re

 0    14 tarjetas    sir
descargar mp3 imprimir jugar test de práctica
 
término język polski definición język polski
Returns a list containing all matches
empezar lección
findall
Returns a Match object if there is a match anywhere in the string
empezar lección
search
Returns a list where the string has been split at each match
empezar lección
split
Replaces one or many matches with a string
empezar lección
sub
Every character from the set.
empezar lección
[]
"[a-m]"
Signals a special sequence (can also be used to escape special characters)
empezar lección
\
"\d"
Any character (except newline character)
empezar lección
.
"he... o"
Starts with
empezar lección
^
"^hello"
Ends with
empezar lección
$
"world$"
Zero or more occurrences
empezar lección
*
"aix*"
One or more occurrences
empezar lección
+
"aix+"
Exactly the specified number of occurrences
empezar lección
{}
"al{2}"
Either or
empezar lección
|
"falls|stays"
Capture and group
empezar lección
()

Debes iniciar sesión para poder comentar.