1.首先,re模組是python自帶的模組,使用import re就可以使用了
2.基礎語法我就不說了。主要進行總結
match,search都是只匹配一次的。匹配到就返回match物件了。後面是否有可以匹配到的是不管的,如果match開頭沒有匹配到,返回none,search在整個字串中麼有匹配到返回none
findall,split返回字串列表。findall返回匹配到的所有,split以pattern作為分隔符進行分割,並且刪除pattern的內容,如果想獲取非空的列表,可以while '' in result:result.remove('')
import re.sub(pattern,replace,txt)替換,就像notepad裡的替換一樣,沒什麼好說的。返回結果是替換後的字串# 1-9開頭後接5位數字
pattern = r'[1-9]\d'
txt = 'a 123546 is this a s123456123456123456 sda123456 23'
result = re.split(pattern, txt)
print(result)
while '' in result:
result.remove('')
print(result)
###########################
#['a ', ' is this a s', '', '', ' sda', ' 23']
#['a ', ' is this a s', ' sda', ' 23']
python 中的re 模組
正規表示式中特殊的符號 表任意字元 表string起始 表string 結束 跟在字元後面表示,0個 多個,1個 多個,0個或者1個 符合條件的情況下,匹配的盡可能少 限制 匹配的貪婪性 匹配此前的字元,重複m次 m到n次,m,n可以省略 舉個例子 a.b 表示a開始,b結束的任意字串 a 匹配連續...
python中re模組的使用
res re.match pattern,string,flags 0 字串的開頭是否能匹配正規表示式。返回 sre.sre match物件,如果 不能匹配返回none。如果匹配的話,res.string可以獲得原始的字串,並不是匹配的字串 re.sub pattern,repl,string,co...
python模組 re模組
匹配任意字元 匹配指定字元類別 字元開頭 字元結尾 取非字元 重複多次字元 0次或多次 重複多次字元 1次或多次 重複單次字元 左右表示式任意匹配 重複m到n次字元 重複m次字元 d 匹配任何十進位制數,相當於 0 9 d 匹配任何非數字字元,相當於 0 9 s 匹配任何空白字元,相當於 fdss ...