簡單介紹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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 正規表示式使用replace()函式簡單介紹函式
- javascript的正規表示式的test()方法簡單介紹JavaScript
- Java正規表示式簡單介紹Java
- 十六進位制在正規表示式中的使用簡單介紹
- 簡單介紹Idea使用正規表示式批量替換字串的方法Idea字串
- oracle的正規表示式(regular expression)簡單介紹OracleExpress
- 正規表示式簡介
- 簡單介紹正規表示式拆分url例項程式碼
- re正規表示式庫的簡介、入門、使用方法
- 正規表示式單行、多行模式簡介(使用說明)模式
- 正規表示式語法介紹
- 正規表示式i大小寫識別符號作用簡單介紹符號
- python中re模組的使用(正規表示式)Python
- 常用正規表示式匹配程式碼介紹
- Java 正規表示式的簡單應用.Java
- python中的re(正規表示式)Python
- 超簡單!正規表示式總結
- 簡單學習 JavaScript 正規表示式JavaScript
- python正規表示式(簡明版)Python
- 簡單介紹SQL中ISNULL函式使用方法SQLNull函式
- javascript表示式中的運算順序簡單介紹JavaScript
- 正規表示式在Java中的使用Java
- python正規表示式問號的使用Python
- python 學習 -- 正規表示式的使用Python
- python的正規表示式Python
- python 的正規表示式Python
- 正規表示式查詢相似單詞的方法
- Python——正規表示式Python
- Python 正規表示式Python
- Python:正規表示式Python
- python正規表示式Python
- 正規表示式 split()方法
- js中匿名函式的使用簡單介紹JS函式
- 使用正規表示式替換字串的方法(replace方法)字串
- MongoDB正規表示式在索引中的使用MongoDB索引
- 函式表示式和函式宣告簡單介紹函式
- java中的正規表示式Java
- JS中的正規表示式JS