簡單介紹python中使用正規表示式的方法
導讀 | 這篇文章主要為大家詳細介紹了python中使用正規表示式的方法,文中示例程式碼介紹的非常詳細,具有一定的參考價值,感興趣的小夥伴們可以參考一下,希望能夠給你帶來幫助 |
在python中使用正規表示式,主要透過下面的幾個方法
search(pattern, string, flags=0)
掃描整個string並返回匹配pattern的結果(None或物件)
有匹配的字串的話返回一個物件(包含符合匹配條件的第一個字串),否則返回None
import re #匯入正則庫 content = 'Hello 1234567 Hello 666' #要匹配的文字 res = 'Hello\s' #正則字串 result = re.search(res, content) if result is not None: print(result.group()) #輸出匹配得到的字串 'hello'(返回的得是第一個'hello') print(result.span()) #輸出輸出匹配的範圍(匹配到的字串在原字串中的位置的範圍) res1 = 'Hello\s(\d)(\d+)' result = re.search(res1, content) print(result.group(1)) #group(1)表示匹配到的第一個組(即正則字串中的第一個括號)的內容 print(result.group(2))
findall(pattern, string, flags=0)
掃描整個context並返回匹配res的結果(None或列表)
有匹配的字串的話返回一個列表(符合匹配條件的每個子字串作為它的一個元素),否則返回None
import re res = 'Hello\s' results = re.findall(res, content) if results is not None: print(results) #輸出: ['hello','hello'] res1 = 'Hello\s(\d)(\d+)' results = re.findall(res1, content) if result is not None: print(results) # 當正則字串中出現括號時,所得到列表的每個元素是元組 # 每個元組的元素都是依次匹配到的括號內的表示式的結果 #輸出: [('1','1234567'),('6','666')]
sub(pattern, repl, string, count=0, flags=0)
可以來修改文字
用將用pattern匹配string所得的字串替換成repl
import re content = '54aK54yr5oiR54ix5L2g' res = '\d+' content = re.sub(res, '', content) print(content)
compile(pattern, flags=0)
將正規表示式res編譯成一個正則物件並返回,以便複用
import re content1 = '2019-12-15 12:00' content2 = '2019-12-17 12:55' content3 = '2019-12-22 13:21' pattern = re.compile('\d{2}:\d{2}') result1 = re.sub(pattern, '', content1) result2 = re.sub(pattern, '', content2) result3 = re.sub(pattern, '', content3) print(result1, result2, result3)
flags的一些常用值
re.I 使匹配對大小寫不敏感
re.S 使.匹配包括換行符在內的所有字元
import re re.compile(res, re.I) #如果res可以匹配大寫字母,那它也可以匹配相應的小寫字母,反之也可 re.compile(res,re.S) #使res中的'.'字元可以匹配包括換行符在內的所有字元
原文來自:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2887478/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Java正規表示式簡單介紹Java
- 簡單介紹Idea使用正規表示式批量替換字串的方法Idea字串
- 簡單介紹正規表示式拆分url例項程式碼
- re正規表示式庫的簡介、入門、使用方法
- 正規表示式單行、多行模式簡介(使用說明)模式
- python正規表示式(簡明版)Python
- python中re模組的使用(正規表示式)Python
- 常用正規表示式匹配程式碼介紹
- 簡單介紹SQL中ISNULL函式使用方法SQLNull函式
- python正規表示式問號的使用Python
- 超簡單!正規表示式總結
- Python——正規表示式Python
- python正規表示式Python
- Python 正規表示式Python
- Python:正規表示式Python
- 正規表示式在Java中的使用Java
- 正規表示式查詢相似單詞的方法
- 正規表示式簡述
- Python正規表示式簡記和re庫Python
- 使用正規表示式替換字串的方法(replace方法)字串
- 正規表示式 split()方法
- 簡單介紹Python中的配對函式zip()Python函式
- python之正規表示式Python
- python 正規表示式匹配Python
- Python正規表示式手稿Python
- Python正規表示式大全Python
- 正規表示式中test、exec、match的區別介紹及括號的用法
- Python正規表示式匹配字串中的數字Python字串
- python 中的正規表示式學習筆記Python筆記
- java中的正規表示式Java
- JS中的正規表示式JS
- 正規表示式簡明教程
- 正規表示式中環視的簡單應用示例【基於java】Java
- 正規表示式之Matcher類中group方法
- 在 Shell 中轉換 Python 正規表示式Python
- Dreamweaver網頁設計中的正規表示式使用方法教程網頁
- 簡單介紹java中的equals()方法Java
- Python正規表示式詳解Python