1、編寫Python正則表達式字符串s。
2、使用re.compile將正則表達式編譯成正則對象Patternp。
3、正則對象p調用p.search或p.findall或p.finditer查找內容。
4、正則對象p調用p.sub或p.subn替換內容。
實例
importre
s="正則表達式"
p=re.compile(s)
#查找
mf1=p.search("檢測內容")
mf2=p.findall("檢測內容")
mf3=p.finditer("檢測內容")
#替換
ms=p.sub("檢測內容")
ms2=p.subn("檢測內容")
#分割
mp=p.split("檢測內容")
以上內容為大家介紹了python培訓之正則表達式查找和替換內容,希望對大家有所幫助,如果想要了解更多Python相關知識,請關注IT培訓機構:千鋒教育。