91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

re.split,re.finditer怎么在Python3中使用

發布時間:2021-05-11 15:39:07 來源:億速云 閱讀:133 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關re.split,re.finditer怎么在Python3中使用,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

re.split re.finditer re.findall

@(python3)

官方 re 模塊說明文檔

re.compile() 函數

編譯正則表達式模式,返回一個對象。可以把常用的正則表達式編譯成正則表達式對象,方便后續調用及提高效率。

re 模塊最離不開的就是 re.compile 函數。其他函數都依賴于 compile 創建的 正則表達式對象

re.compile(pattern, flags=0)

  • pattern 指定編譯時的表達式字符串

  • flags 編譯標志位,用來修改正則表達式的匹配方式。支持 re.L|re.M 同時匹配

flags 標志位參數

re.I(re.IGNORECASE)
使匹配對大小寫不敏感

re.L(re.LOCAL)
做本地化識別(locale-aware)匹配

re.M(re.MULTILINE)
多行匹配,影響 ^ 和 $

re.S(re.DOTALL)
使 . 匹配包括換行在內的所有字符

re.U(re.UNICODE)
根據Unicode字符集解析字符。這個標志影響 \w, \W, \b, \B.

re.X(re.VERBOSE)
該標志通過給予你更靈活的格式以便你將正則表達式寫得更易于理解。

示例:

import re
content = 'Citizen wang , always fall in love with neighbour,WANG'
rr = re.compile(r'wan\w', re.I) # 不區分大小寫
print(type(rr))
a = rr.findall(content)
print(type(a))
print(a)

findall 返回的是一個 list 對象

<class '_sre.SRE_Pattern'>
<class 'list'>
['wang', 'WANG']

re.split 函數

按照指定的 pattern 格式,分割 string 字符串,返回一個分割后的列表。

re.split(pattern, string, maxsplit=0, flags=0)

  • pattern compile 生成的正則表達式對象,或者自定義也可

  • string 要匹配的字符串

  • maxsplit 指定最大分割次數,不指定將全部分割

import re
str = 'say hello world! hello python'
str_nm = 'one1two2three3four4'
pattern = re.compile(r'(?P<space>\s)') # 創建一個匹配空格的正則表達式對象
pattern_nm = re.compile(r'(?P<space>\d+)') # 創建一個匹配空格的正則表達式對象
match = re.split(pattern, str)
match_nm = re.split(pattern_nm, str_nm, maxsplit=1)
print(match)
print(match_nm)

結果:

['say', ' ', 'hello', ' ', 'world!', ' ', 'hello', ' ', 'python']
['one', '1', 'two2three3four4']

re.findall() 方法

返回一個包含所有匹配到的字符串的列表。

  • pattern 匹配模式,由 re.compile 獲得

  • string 需要匹配的字符串

import re
str = 'say hello world! hello python'
pattern = re.compile(r'(?P<first>h\w)(?P<symbol>l+)(?P<last>o\s)') # 分組,0 組是整個 world!, 1組 or,2組 ld!
match = re.findall(pattern, str)
print(match)

結果

[('he', 'll', 'o '), ('he', 'll', 'o ')]

re.finditer 、re.findall

re.finditer(pattern, string[, flags=0])
re.findall(pattern, string[, flags=0])

  • pattern compile 生成的正則表達式對象,或者自定義也可

  • string 要匹配的字符串

findall 返回一個包含所有匹配到的字符的列表,列表類以元組的形式存在。

finditer 返回一個可迭代對象。

示例一:

pattern = re.compile(r'\d+@\w+.com') #通過 re.compile 獲得一個正則表達式對象
result_finditer = re.finditer(pattern, content)
print(type(result_finditer))
print(result_finditer) # finditer 得到的結果是個可迭代對象
for i in result_finditer: # i 本身也是可迭代對象,所以下面要使用 i.group()
 print(i.group())
result_findall = re.findall(pattern, content)
print(type(result_findall)) # findall 得到的是一個列表
print(result_findall)
for p in result_finditer:
 print(p)

輸出結果:

<class 'callable_iterator'>
<callable_iterator object at 0x10545ec88>
123456@163.com
234567@163.com
345678@163.com
<class 'list'>
['123456@163.com', '234567@163.com', '345678@163.com']

由結果可知:finditer 得到的是可迭代對象,finfdall 得到的是一個列表。

示例二:

import re
content = '''email:123456@163.com
email:234567@163.com
email:345678@163.com
'''
pattern = re.compile(r'(?P<number>\d+)@(?P<mail_type>\w+).com')
result_finditer = re.finditer(pattern, content)
print(type(result_finditer))
print(result_finditer)
iter_dict = {} # 把最后得到的結果
for i in result_finditer:
 print('郵箱號碼是:', i.group(1),'郵箱類型是:',i.group(2))
 number = i.group(1)
 mail_type = i.group(2)
 iter_dict.setdefault(number, mail_type) # 使用 dict.setdefault 創建了一個字典
print(iter_dict)
print('+++++++++++++++++++++++++++++++')
result_findall = re.findall(pattern, content)
print(result_findall)
print(type(result_findall))

輸出結果:

<class 'callable_iterator'>
<callable_iterator object at 0x104c5cbe0>
郵箱號碼是: 123456 郵箱類型是: 163
郵箱號碼是: 234567 郵箱類型是: 163
郵箱號碼是: 345678 郵箱類型是: 163
{'123456': '163', '234567': '163', '345678': '163'}
+++++++++++++++++++++++++++++++
[('123456', '163'), ('234567', '163'), ('345678', '163')]
<class 'list'>

finditer 得到的可迭代對象 i,也可以使用 lastindex,lastgroup 方法。

print('lastgroup 最后一個被捕獲的分組的名字',i.lastgroup)

findall 當正則沒有分組,返回就是正則匹配。

re.findall(r"\d+@\w+.com", content)
['2345678@163.com', '2345678@163.com', '345678@163.com']

有一個分組返回的是分組的匹配

re.findall(r"(\d+)@\w+.com", content)
['2345678', '2345678', '345678']

多個分組時,將結果作為 元組,一并存入到 列表中。

re.findall(r"(\d+)@(\w+).com", content)
[('2345678', '163'), ('2345678', '163'), ('345678', '163')]

以上就是re.split,re.finditer怎么在Python3中使用,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泗水县| 肃北| 阿勒泰市| 巴塘县| 垣曲县| 富锦市| 四川省| 库伦旗| 康平县| 绥芬河市| 贡山| 遂溪县| 根河市| 阿瓦提县| 揭西县| 阳泉市| 平陆县| 潼南县| 上栗县| 徐州市| 察雅县| 连云港市| 察隅县| 商都县| 沾化县| 秭归县| 建德市| 会昌县| 讷河市| 黄骅市| 保德县| 连城县| 浦江县| 雅安市| 张北县| 上犹县| 瑞丽市| 沂水县| 保靖县| 涿州市| 绍兴县|