.
匹配任意單個字元
>>> re.findall('o.','hello world')
['o ', 'or']
匹配指定的單個字元
>>> re.findall('[lw]o','hello world')
['lo', 'wo']
[a-z]
匹配a到z的任意單個字母
>>> re.findall('o[a-z]','hello world')
['or']
.*?
匹配任意長度的任意字元
>>> re.findall('h.*?d','hello world')
['hello world']
()
可用於擷取查詢結果中的任意一段
>>> re.findall(' .. ', 'hello my world')
[' my ']
>>> re.findall(' (..) ', 'hello my world')
['my']
*
可用於匹配任意數量的重複字元,包括零個、乙個和多個
例如*o
可匹配 '', 'o', 'oo', 'ooo' ... ...
>>> re.findall('o*ps',' ps ops oops oooooops')
['ps', 'ops', 'oops', 'oooooops']
+
與*
作用類似,但不匹配空字元
>>> re.findall('o+ps',' ps ops oops oooooops')
['ops', 'oops', 'oooooops']
{}
可匹配指定數量的重複字元
>>> re.findall('ops',' ps ops oops oooooops')
['oops', 'oops']
|
表示匹配條件中的「或」關係
>>> re.findall('to|be','to be or not to be')
['to', 'be', 'to', 'be']
\d
可用於匹配單個數字
>>> re.findall('\d','hello 2020')
['2', '0', '2', '0']
python正規表示式元字元 正規表示式
字元 描述將下乙個字元標記為乙個特殊字元 或乙個原義字元 或乙個 向後引用 或乙個八進位制轉義符。例如,n 匹配字元 n n 匹配乙個換行符。序列 匹配 而 則匹配 匹配輸入字串的開始位置。如果設定了 regexp 物件的 multiline 屬性,也匹配 n 或 r 之後的位置。匹配輸入字串的結束...
Python 正規表示式
1.在python中,所有和正規表示式相關的功能都包含在re模組中。2.字元 表示 字串的末尾 如 road 則表示 只有當 road 出現在乙個字串的尾部時才會匹配。3.字元 表示 字元中的開始 如 road 則表示 只有當 road 出現在乙個字串的頭部時才會匹配。4.利用re.sub函式對字串...
Python正規表示式
學習python自然而然就不得不面對正規表示式這個難題。當初在沒有學習python之前,自己也曾經嘗試著學習過正規表示式,但是那時候感覺很麻煩,很難懂,結果就是不了了之。但是現在學習python我用的書是 python基礎教程 第二版 這本書中對re模組的講解很簡單易懂,內容不多但起碼把人領進門了,...