您好,登錄后才能下訂單哦!
本文以匹配×××ID為例,介紹re模塊的compile與match的用法
復雜匹配 = re.compile(正則表達式): 將正則表達式實例化
+
re.match(要匹配的字符串): 從字符串開 頭/尾 開始匹配
簡單匹配 = re.match(正則表達式,要匹配的字符串): 從字符串開 頭/尾 開始匹配
懶癌,配上模塊函數解釋好消化
re.match(pattern, string, flags) 第一個參數是正則表達式,如果匹配成功,則返回一個Match,否則返回一個None; 第二個參數表示要匹配的字符串; 第三個參數是標致位,用于控制正則表達式的匹配方式,如:是否區分大小寫,多行匹配等等。 需要特別注意的是,這個方法并不是完全匹配。它僅僅決定在字符串開始的位置是否匹配。所以當pattern結束時若還有剩余字符,仍然視為成功。想要完全匹配,可以在表達式末尾加上邊界匹配符'$' 例如: match(‘p’,’python’)返回值為真; match(‘p’,’www.python.org’)返回值為假 --------------------- 作者:24k千足金閃閃大寶貝貓的小熊 來源:CSDN 原文:https://blog.csdn.net/piglite/article/details/81121323 版權聲明:本文為博主原創文章,轉載請附上博文鏈接!
方法一:
re.compile(正則表達式).match(要比配的字符串)
#!/usr/bin/python #! -*- coding:utf-8 -*- import re; id_num = '440211199606030022' id_pat = '(^\d{14}(\d|x)$|(^\d{17}(\d|x)$))' id_str = re.compile(id_pat).match(id_num) print("Match: " + str(id_str.group()))
運行結果:
Match: 440211199606030022
方法二:
對象名1 = re.compile(正則表達式)
對象名2 = 對象名1.match(要比配的字符串)
#!/usr/bin/python #! -*- coding:utf-8 -*- import re; id_num = '440211199606030022' id_pat = '(^\d{14}(\d|x)$|(^\d{17}(\d|x)$))' id_instantiation = re.compile(id_pat) id_str = id_instantiation.match(id_num) print("Match: " + str(id_str.group()))
運行結果:
Match: 440211199606030022
方法三:
對象名1 = re.compile(正則表達式)
對象名2 = re.match(對象名1, 要比配的字符串)
#!/usr/bin/python #! -*- coding:utf-8 -*- import re; id_num = '440211199606030022' id_pat = '(^\d{14}(\d|x)$|(^\d{17}(\d|x)$))' id_instantiation = re.compile(id_pat) id_str = re.match(id_instantiation,id_num) print("Match: " + str(id_str.group()))
運行結果:
Match: 440211199606030022
方法四:
對象名1 = 正則表達式
對象名2 = re.compile(對象名1, 要比配的字符串)
#!/usr/bin/python #! -*- coding:utf-8 -*- import re; id_num = '440211199606030022' id_pat = '(^\d{14}(\d|x)$|(^\d{17}(\d|x)$))' id_str = re.match(id_pat,id_num) print("Match: " + str(id_str.group()))
運行結果:
Match: 440211199606030022
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。