re

 0    14 fiche    sir
laste ned mp3 Skriv ut spille sjekk deg selv
 
spørsmålet język polski svaret język polski
Returns a list containing all matches
begynn å lære
findall
Returns a Match object if there is a match anywhere in the string
begynn å lære
search
Returns a list where the string has been split at each match
begynn å lære
split
Replaces one or many matches with a string
begynn å lære
sub
Every character from the set.
begynn å lære
[]
"[a-m]"
Signals a special sequence (can also be used to escape special characters)
begynn å lære
\
"\d"
Any character (except newline character)
begynn å lære
.
"he... o"
Starts with
begynn å lære
^
"^hello"
Ends with
begynn å lære
$
"world$"
Zero or more occurrences
begynn å lære
*
"aix*"
One or more occurrences
begynn å lære
+
"aix+"
Exactly the specified number of occurrences
begynn å lære
{}
"al{2}"
Either or
begynn å lære
|
"falls|stays"
Capture and group
begynn å lære
()

Du må logge inn for å legge inn en kommentar.