python re模組常見使用方法整理

abcjob發表於2021-09-11

python re模組常見使用方法整理

我們在用re模組時,根據不同的使用需求,我們要挑選不同的函式來匹配。考慮到大家初學python,在對於方法的學習上,小編推薦以常見的方法為主要學習目標。本篇所帶來的是re.sub和re.compile兩種函式,下面就這兩個部分分別展開講解,具體內容如下展開。

1、re.sub

re.sub用於替換字串中的匹配項。下面一個例子將字串中的空格 ' ' 替換成 '-' : 

import re  

text = "JGood is a handsome boy, he is cool, clever, and so on..."  
print re.sub(r'/s+', '-', text)

import re text = "JGood is a handsome boy, he is cool, clever, and so on..." print re.sub(r'/s+', '-', text)

re.sub的函式原型為:re.sub(pattern, repl, string, count)

其中第二個函式是替換後的字串;本例中為'-'

第四個引數指替換個數。預設為0,表示每個匹配項都替換。

re.sub還允許使用函式對匹配項的替換進行復雜的處理。如:re.sub(r'/s', lambda m: '[' + m.group(0) + ']', text, 0);將字串中的空格' '替換為'[ ]'。

2、re.compile

可以把正規表示式編譯成一個正規表示式物件。可以把那些經常使用的正規表示式編譯成正規表示式物件,這樣可以提高一定的效率。下面是一個正規表示式物件的一個例子:

import re  
  
text = "JGood is a handsome boy, he is cool, clever, and so on..."  
regex = re.compile(r'/w*oo/w*')  
print regex.findall(text)   #查詢所有包含'oo'的單詞  
print regex.sub(lambda m: '[' + m.group(0) + ']', text) #將字串中含有'oo'的單詞用[]括起來。

import re text = "JGood is a handsome boy, he is cool, clever, and so on..." regex = re.compile(r'/w*oo/w*') print regex.findall(text) #查詢所有包含'oo'的單詞 print regex.sub(lambda m: '[' + m.group(0) + ']', text) #將字串中含有'oo'的單詞用[]括起來。

以上就是python re模組常見使用方法整理,當然re模組的方法比較多,本篇因為篇幅有限,會在之後的文章中不斷更新這部分的使用。更多Python學習指路:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4798/viewspace-2830591/,如需轉載,請註明出處,否則將追究法律責任。

相關文章