re

 0    14 карточки    sir
скачать mp3 Печать играть Проверьте себя
 
Вопрос język polski Ответ język polski
Returns a list containing all matches
начать обучение
findall
Returns a Match object if there is a match anywhere in the string
начать обучение
search
Returns a list where the string has been split at each match
начать обучение
split
Replaces one or many matches with a string
начать обучение
sub
Every character from the set.
начать обучение
[]
"[a-m]"
Signals a special sequence (can also be used to escape special characters)
начать обучение
\
"\d"
Any character (except newline character)
начать обучение
.
"he... o"
Starts with
начать обучение
^
"^hello"
Ends with
начать обучение
$
"world$"
Zero or more occurrences
начать обучение
*
"aix*"
One or more occurrences
начать обучение
+
"aix+"
Exactly the specified number of occurrences
начать обучение
{}
"al{2}"
Either or
начать обучение
|
"falls|stays"
Capture and group
начать обучение
()

Вы должны войти в свой аккаунт чтобы написать комментарий.