在 Python中,咱們能夠使用內置的 re 模塊來使用正則表達式。與大多數編程語言相同,正則表達式裏使用'\'做爲轉義字符,這就可能形成反斜槓困擾。Python裏的原生字符串很好地解決了這個問題,只須要在字符串前面加上'r'前綴。正則表達式
使用 compile()
函數將正則表達式的字符串形式編譯爲一個 Pattern
對象編程
經過 Pattern
對象提供的一系列方法對文本進行匹配查找編程語言
import re # 將正則表達式編譯成 Pattern對象,並指定匹配模式爲點任意匹配模式 pattern = re.compile(r'\d+',re.S)
match(string[, pos[, endpos]])
其中,string 是待匹配的字符串,pos 和 endpos 是可選參數,指定字符串的起始和終點位置,默認值分別是 0 和 len (字符串長度)。所以,當你不指定 pos 和 endpos 時,match 方法默認匹配字符串的頭部。函數
In [1]: import re In [2]: pattern = re.compile(r"(\w+) (\d+)") In [3]: m = pattern.match('hello 123') In [4]: m.group(1) Out[4]: 'hello' In [5]: m.group(1,2) Out[5]: ('hello', '123') In [6]: m.group() Out[6]: 'hello 123' In [7]: m.groups() Out[7]: ('hello', '123') In [8]: m.start(1) Out[8]: 0 In [9]: m.start(2) Out[9]: 6 In [10]: m.end(1) Out[10]: 5 In [11]: m.span(1) Out[11]: (0, 5) In [12]: m.span(2) Out[12]: (6, 9)
search(string[, pos[, endpos]])
其中,string 是待匹配的字符串,pos 和 endpos 是可選參數,指定字符串的起始和終點位置,默認值分別是 0 和 len (字符串長度)。spa
>>> import re >>> pattern = re.compile('\d+') >>> m = pattern.search('one12twothree34four') # 這裏若是使用 match 方法則不匹配 >>> m <_sre.SRE_Match object at 0x10cc03ac0> >>> m.group() '12' >>> m = pattern.search('one12twothree34four', 10, 30) # 指定字符串區間 >>> m <_sre.SRE_Match object at 0x10cc03b28> >>> m.group() '34' >>> m.span() (13, 15)
findall(string[, pos[, endpos]])
其中,string 是待匹配的字符串,pos 和 endpos 是可選參數,指定字符串的起始和終點位置,默認值分別是 0 和 len (字符串長度)。code
import re #re模塊提供一個方法叫compile模塊,提供咱們輸入一個匹配的規則 #而後返回一個pattern實例,咱們根據這個規則去匹配字符串 pattern = re.compile(r'\d+\.\d*') #經過partten.findall()方法就可以所有匹配到咱們獲得的字符串 result = pattern.findall("123.141593, 'bigcat', 232312, 3.15") #findall 以 列表形式 返回所有能匹配的子串給result for item in result: print(item)
運行結果:對象
123.141593 3.15
In [1]: import re In [2]: pattern = re.compile(r"\d+") In [3]: iter = pattern.finditer('hello123world456 haha789') In [4]: iter Out[4]: <callable_iterator at 0x7fb824fe2a90> In [5]: for m in iter: ...: print(m.group()) ...: 123 456 789
split(string[, maxsplit])
其中,maxsplit 用於指定最大分割次數,不指定將所有分割。blog
In [1]: import re In [2]: pattern = re.compile(r"[\d\s]") In [3]: pattern.split('hello1word2aaa bbb') Out[3]: ['hello', 'word', 'aaa', 'bbb'] In [4]: pattern.split('hello1word2aaa bbb',2) Out[4]: ['hello', 'word', 'aaa bbb']
sub(repl, string[, count])
其中,repl 能夠是字符串也能夠是一個函數:索引
In [1]: import re In [2]: pattern = re.compile(r'\d+') In [3]: pattern.sub('100','hello20 world30')#將全部匹配到的數據替換成100 Out[3]: 'hello100 world100' In [4]: pattern.sub('100','hello20 world30',1)#只替換第一個數據爲100 Out[4]: 'hello100 world30' In [5]: def add(temp): ...: '''將匹配到的數據加1''' ...: strNum = temp.group() ...: num = int(strNum)+1 ...: return str(num) In [6]: pattern.sub(add,'hello20 world30')#將全部匹配到的數據加1 Out[6]: 'hello21 world31' In [7]: pattern.sub(add,'hello20 world30',1)#只將匹配到的第一個數據加1 Out[7]: 'hello21 world30'
In [1]: import re In [2]: pattern = re.compile(r'\d+') In [3]: pattern.match('123456789').group() Out[3]: '123456789' In [4]: pattern = re.compile(r'\d+?')#關閉貪婪模式 In [5]: pattern.match('123456789').group()#非貪婪模式下,?只匹配一個字符 Out[5]: '1' In [6]: pattern = re.compile(r'<div>.*</div>') In [7]: pattern.match('<div>test1</div>bb<div>test2</div>').group() Out[7]: '<div>test1</div>bb<div>test2</div>' In [8]: pattern = re.compile(r'<div>.*?</div>')#關閉貪婪模式 In [9]: pattern.match('<div>test1</div>bb<div>test2</div>').group() Out[9]: '<div>test1</div>'