re

 0    14 adatlap    sir
letöltés mp3 Nyomtatás játszik ellenőrizze magát
 
kérdés język polski válasz język polski
Returns a list containing all matches
kezdjen tanulni
findall
Returns a Match object if there is a match anywhere in the string
kezdjen tanulni
search
Returns a list where the string has been split at each match
kezdjen tanulni
split
Replaces one or many matches with a string
kezdjen tanulni
sub
Every character from the set.
kezdjen tanulni
[]
"[a-m]"
Signals a special sequence (can also be used to escape special characters)
kezdjen tanulni
\
"\d"
Any character (except newline character)
kezdjen tanulni
.
"he... o"
Starts with
kezdjen tanulni
^
"^hello"
Ends with
kezdjen tanulni
$
"world$"
Zero or more occurrences
kezdjen tanulni
*
"aix*"
One or more occurrences
kezdjen tanulni
+
"aix+"
Exactly the specified number of occurrences
kezdjen tanulni
{}
"al{2}"
Either or
kezdjen tanulni
|
"falls|stays"
Capture and group
kezdjen tanulni
()

Kommentár közzétételéhez be kell jelentkeznie.