re

 0    14 kartičky    sir
stáhnout mp3 Vytisknout hrát zkontrolovat se
 
otázka język polski odpověď język polski
Returns a list containing all matches
začněte se učit
findall
Returns a Match object if there is a match anywhere in the string
začněte se učit
search
Returns a list where the string has been split at each match
začněte se učit
split
Replaces one or many matches with a string
začněte se učit
sub
Every character from the set.
začněte se učit
[]
"[a-m]"
Signals a special sequence (can also be used to escape special characters)
začněte se učit
\
"\d"
Any character (except newline character)
začněte se učit
.
"he... o"
Starts with
začněte se učit
^
"^hello"
Ends with
začněte se učit
$
"world$"
Zero or more occurrences
začněte se učit
*
"aix*"
One or more occurrences
začněte se učit
+
"aix+"
Exactly the specified number of occurrences
začněte se učit
{}
"al{2}"
Either or
začněte se učit
|
"falls|stays"
Capture and group
začněte se učit
()

Chcete-li přidat komentář, musíte se přihlásit.