Python中re模組常用函式

2021-09-01 03:24:05 字數 2726 閱讀 7129

re.match

re.match 嘗試從字串的開始匹配乙個模式,如:下面的例子匹配第乙個單詞。

import re

text = "jgood is a handsome boy, he is cool, clever, and so on..."

m = re.match(r"(\w+)\s", text)

if m:

print m.group(0), '\n', m.group(1)

else:

print 'not match'

import re text = "jgood is a handsome boy, he is cool, clever, and so on..." m = re.match(r"(\w+)\s", text) if m: print m.group(0), '\n', m.group(1) else: print 'not match'

re.match的函式原型為:re.match(pattern, string, flags)

第乙個引數是正規表示式,這裡為"(\w+)\s",如果匹配成功,則返回乙個match,否則返回乙個none;

第二個引數表示要匹配的字串;

第三個引數是標緻位,用於控制正規表示式的匹配方式,如:是否區分大小寫,多行匹配等等。

re.search

re.search函式會在字串內查詢模式匹配,只到找到第乙個匹配然後返回,如果字串沒有匹配,則返回none。

import re

text = "jgood is a handsome boy, he is cool, clever, and so on..."

m = re.search(r'\shan(ds)ome\s', text)

if m:

print m.group(0), m.group(1)

else:

print 'not search'

import re text = "jgood is a handsome boy, he is cool, clever, and so on..." m = re.search(r'\shan(ds)ome\s', text) if m: print m.group(0), m.group(1) else: print 'not search'

re.search的函式原型為: re.search(pattern, string, flags)

每個引數的含意與re.match一樣。

re.match與re.search的區別:re.match只匹配字串的開始,如果字串開始不符合正規表示式,則匹配失敗,函式返回none;而re.search匹配整個字串,直到找到乙個匹配。

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);將字串中的空格' '替換為'[ ]'。

re.split

可以使用re.split來分割字串,如:re.split(r'\s+', text);將字串按空格分割成乙個單詞列表。

re.findall

re.findall可以獲取字串中所有匹配的字串。如:re.findall(r'\w*oo\w*', text);獲取字串中,包含'oo'的所有單詞。

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手冊。

Python常用模組 re

python內部的re 傳聞中的正則模組,是無數初學者心中的噩夢,幾乎到了談正則色變的地步。1.正則是幹什麼的 正規表示式,又稱規則表示式。英語 regular expression,在 中常簡寫為regex regexp或re 電腦科學的乙個概念。正規表示式通常被用來檢索 替換那些符合某個模式 規...

re模組的常用函式

re模組使python語言擁有全部的正規表示式功能,本篇主要介紹python中re模組常用的函式使用方法 search 函式 search 函式瀏覽全部字串,匹配第乙個符合規則的字串,未匹配則返回none 語法 search pattern,string,flags 0 pattern 要匹配的正規...

Python中常用re模組

匹配字串開頭 匹配字串結尾 匹配任意字元,除了換行符 匹配指定的一組字元,amk 匹配 a 或 m 或 k 匹配除了這組字元以外的字元 匹配0或多個 匹配1或多個 匹配0或1個,非貪婪模式 精確匹配前面表示式n次,如a不能匹配ba,只能匹配baab 匹配n次前面的表示式,a a a a 匹配 n 到...