1、編寫Python正則表達式字符串s。
2、使用re.compile()將正則表達式編譯成正則對象Patternp。
3、正則對象p調(diào)用p.match()或p.fullmatch函數(shù)得到匹配對象matchm。
4、判斷匹配對象m內(nèi)容是否成功。
實例
importre
s="正則表達式"
p=re.compile(s)
m=p.match("檢測的文本")
ifm:
print(m.group())
以上內(nèi)容為大家介紹了python培訓(xùn)之正則表達式如何匹配內(nèi)容,希望對大家有所幫助,如果想要了解更多Python相關(guān)知識,請關(guān)注IT培訓(xùn)機構(gòu):千鋒教育。