python的正規是透過re模組的支援
匹配的3個函數
match :只從字串的開始與正規表示式匹配,匹配成功返回matchobject,否則返回none;
re.match(pattern, string, flags=0) ##flags##標誌位,用於控制正規表示式的匹配方式,如:是否區分大小寫,多行匹配等等。
search :將字串的所有字符串嘗試與正規表示式匹配,如果所有的字符串都沒有匹配成功,返回none,否則返回matchobject;(re.search相當於perl中的預設行為)findall方法,傳回所有的與給定的表達式匹配的一個list;
使用
mypatten = re.compile("規則") ##定義符合的規則
myresult = mypatten.match("字串") ##符合結果
if myresult:
print myresult.group()##括號中可以填數字也可以 命名分組 (? P
search於match一樣
mypatten = re.compile("規則") ##定義符合的規則
myresult = mypatten. findall("字串") ##回傳的是列表 如果裡面有分組回傳的是個二維清單
##if myresult:myresult.group()#
以上是python正規的使用方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!