re

 0    14 flashcards    sir
mp3 indir Baskı oynamak kendini kontrol et
 
soru język polski cevap język polski
Returns a list containing all matches
öğrenmeye başla
findall
Returns a Match object if there is a match anywhere in the string
öğrenmeye başla
search
Returns a list where the string has been split at each match
öğrenmeye başla
split
Replaces one or many matches with a string
öğrenmeye başla
sub
Every character from the set.
öğrenmeye başla
[]
"[a-m]"
Signals a special sequence (can also be used to escape special characters)
öğrenmeye başla
\
"\d"
Any character (except newline character)
öğrenmeye başla
.
"he... o"
Starts with
öğrenmeye başla
^
"^hello"
Ends with
öğrenmeye başla
$
"world$"
Zero or more occurrences
öğrenmeye başla
*
"aix*"
One or more occurrences
öğrenmeye başla
+
"aix+"
Exactly the specified number of occurrences
öğrenmeye başla
{}
"al{2}"
Either or
öğrenmeye başla
|
"falls|stays"
Capture and group
öğrenmeye başla
()

Yorum yapmak için giriş yapmalısınız.