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
学び始める
()

コメントを投稿するにはログインする必要があります。