您好,登錄后才能下訂單哦!
本篇文章為大家展示了Python中怎么使用正則表達式匹配方法,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
1.測試正則表達式是否匹配字符串的全部或部分
regex=ur"" #正則表達式 if re.search(regex, subject): do_something() else: do_anotherthing()
2.測試正則表達式是否匹配整個字符串
regex=ur"\Z" #正則表達式末尾以\Z結束 if re.match(regex, subject): do_something() else: do_anotherthing()
3.創建一個匹配對象,然后通過該對象獲得匹配細節(Create an object with details about how the regex matches (part of) a string)
regex=ur"" #正則表達式 match = re.search(regex, subject) if match: # match start: match.start() # match end (exclusive): atch.end() # matched text: match.group() do_something() else: do_anotherthing()
4.獲取正則表達式所匹配的子串(Get the part of a string matched by the regex)
regex=ur"" #正則表達式 match = re.search(regex, subject) if match: result = match.group() else: result = ""
5. 獲取捕獲組所匹配的子串(Get the part of a string matched by a capturing group)
regex=ur"" #正則表達式 match = re.search(regex, subject) if match: result = match.group"groupname") else: result = ""
6. 獲取有名組所匹配的子串(Get the part of a string matched by a named group)
上述內容就是Python中怎么使用正則表達式匹配方法,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。