re

 0    14 fiche    sir
baixar mp3 Imprimir jogar verifique-se
 
questão język polski resposta język polski
Returns a list containing all matches
começar a aprender
findall
Returns a Match object if there is a match anywhere in the string
começar a aprender
search
Returns a list where the string has been split at each match
começar a aprender
split
Replaces one or many matches with a string
começar a aprender
sub
Every character from the set.
começar a aprender
[]
"[a-m]"
Signals a special sequence (can also be used to escape special characters)
começar a aprender
\
"\d"
Any character (except newline character)
começar a aprender
.
"he... o"
Starts with
começar a aprender
^
"^hello"
Ends with
começar a aprender
$
"world$"
Zero or more occurrences
começar a aprender
*
"aix*"
One or more occurrences
começar a aprender
+
"aix+"
Exactly the specified number of occurrences
começar a aprender
{}
"al{2}"
Either or
começar a aprender
|
"falls|stays"
Capture and group
começar a aprender
()

Você deve entrar para postar um comentário.