re

 0    14 fiche    sir
Télécharger mP3 Imprimer jouer consultez
 
question język polski réponse język polski
Returns a list containing all matches
commencer à apprendre
findall
Returns a Match object if there is a match anywhere in the string
commencer à apprendre
search
Returns a list where the string has been split at each match
commencer à apprendre
split
Replaces one or many matches with a string
commencer à apprendre
sub
Every character from the set.
commencer à apprendre
[]
"[a-m]"
Signals a special sequence (can also be used to escape special characters)
commencer à apprendre
\
"\d"
Any character (except newline character)
commencer à apprendre
.
"he... o"
Starts with
commencer à apprendre
^
"^hello"
Ends with
commencer à apprendre
$
"world$"
Zero or more occurrences
commencer à apprendre
*
"aix*"
One or more occurrences
commencer à apprendre
+
"aix+"
Exactly the specified number of occurrences
commencer à apprendre
{}
"al{2}"
Either or
commencer à apprendre
|
"falls|stays"
Capture and group
commencer à apprendre
()

Vous devez vous connecter pour poster un commentaire.