欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Python正則表達(dá)式使用經(jīng)典實(shí)例

 更新時(shí)間:2016年06月21日 09:59:23   作者:2778085001  
本文給大家總結(jié)了17種python正則表達(dá)式使用經(jīng)典實(shí)例,非常不錯(cuò)具有參考借鑒價(jià)值,感興趣的朋友一起學(xué)習(xí)吧

下面列出Python正則表達(dá)式的幾種匹配用法,具體內(nèi)容如下所示:

此外,關(guān)于正則的一切http://deerchao.net/tutorials/regex/regex.htm

1.測(cè)試正則表達(dá)式是否匹配字符串的全部或部分

regex=ur"" #正則表達(dá)式
if re.search(regex, subject):
do_something()
else:
do_anotherthing()

2.測(cè)試正則表達(dá)式是否匹配整個(gè)字符串

regex=ur"\Z" #正則表達(dá)式末尾以\Z結(jié)束
if re.match(regex, subject):
    do_something()
else:
    do_anotherthing()

3.創(chuàng)建一個(gè)匹配對(duì)象,然后通過該對(duì)象獲得匹配細(xì)節(jié)(Create an object with details about how the regex matches (part of) a string)

regex=ur"" #正則表達(dá)式
match = re.search(regex, subject)
if match:
    # match start: match.start()
    # match end (exclusive): atch.end()
    # matched text: match.group()
    do_something()
else:
    do_anotherthing()

4.獲取正則表達(dá)式所匹配的子串(Get the part of a string matched by the regex)

regex=ur"" #正則表達(dá)式
match = re.search(regex, subject)
if match:
    result = match.group()
else:
    result = ""

5. 獲取捕獲組所匹配的子串(Get the part of a string matched by a capturing group)

regex=ur"" #正則表達(dá)式
match = re.search(regex, subject)
if match:
    result = match.group(1)
else:
    result = ""

6. 獲取有名組所匹配的子串(Get the part of a string matched by a named group)

regex=ur"" #正則表達(dá)式
match = re.search(regex, subject)
if match:
result = match.group"groupname")
else:
result = ""

7. 將字符串中所有匹配的子串放入數(shù)組中(Get an array of all regex matches in a string)

result = re.findall(regex, subject)

8.遍歷所有匹配的子串(Iterate over all matches in a string)

for match in re.finditer(r"<(.*?)\s*.*?/\1>", subject)
&nbsp;&nbsp;&nbsp;&nbsp;# match start: match.start()
&nbsp;&nbsp;&nbsp;&nbsp;# match end (exclusive): atch.end()
&nbsp;&nbsp;&nbsp;&nbsp;# matched text: match.group()

9.通過正則表達(dá)式字符串創(chuàng)建一個(gè)正則表達(dá)式對(duì)象(Create an object to use the same regex for many operations)

reobj = re.compile(regex)

10.用法1的正則表達(dá)式對(duì)象版本(use regex object for if/else branch whether (part of) a string can be matched)

reobj = re.compile(regex)
if reobj.search(subject):
&nbsp;&nbsp;&nbsp;&nbsp;do_something()
else:
&nbsp;&nbsp;&nbsp;&nbsp;do_anotherthing()

11.用法2的正則表達(dá)式對(duì)象版本(use regex object for if/else branch whether a string can be matched entirely)

reobj = re.compile(r"\Z")?。U齽t表達(dá)式末尾以\Z 結(jié)束
if reobj.match(subject):
&nbsp;&nbsp;&nbsp;&nbsp;do_something()
else:
&nbsp;&nbsp;&nbsp;&nbsp;do_anotherthing()

12.創(chuàng)建一個(gè)正則表達(dá)式對(duì)象,然后通過該對(duì)象獲得匹配細(xì)節(jié)(Create an object with details about how the regex object matches (part of) a string)

reobj = re.compile(regex)
match = reobj.search(subject)
if match:
&nbsp;&nbsp;&nbsp;&nbsp;# match start: match.start()
&nbsp;&nbsp;&nbsp;&nbsp;# match end (exclusive): atch.end()
&nbsp;&nbsp;&nbsp;&nbsp;# matched text: match.group()
&nbsp;&nbsp;&nbsp;&nbsp;do_something()
else:
&nbsp;&nbsp;&nbsp;&nbsp;do_anotherthing()

13.用正則表達(dá)式對(duì)象獲取匹配子串(Use regex object to get the part of a string matched by the regex)

reobj = re.compile(regex)
match = reobj.search(subject)
if match:
&nbsp;&nbsp;&nbsp;&nbsp;result = match.group()
else:
&nbsp;&nbsp;&nbsp;&nbsp;result = ""

14.用正則表達(dá)式對(duì)象獲取捕獲組所匹配的子串(Use regex object to get the part of a string matched by a capturing group)

reobj = re.compile(regex)
match = reobj.search(subject)
if match:
&nbsp;&nbsp;&nbsp;&nbsp;result = match.group(1)
else:
&nbsp;&nbsp;&nbsp;&nbsp;result = ""

15.用正則表達(dá)式對(duì)象獲取有名組所匹配的子串(Use regex object to get the part of a string matched by a named group)

reobj = re.compile(regex)
match = reobj.search(subject)
if match:
&nbsp;&nbsp;&nbsp;&nbsp;result = match.group("groupname")
else:
&nbsp;&nbsp;&nbsp;&nbsp;result = ""

16.用正則表達(dá)式對(duì)象獲取所有匹配子串并放入數(shù)組(Use regex object to get an array of all regex matches in a string)

reobj = re.compile(regex)
result = reobj.findall(subject)

17.通過正則表達(dá)式對(duì)象遍歷所有匹配子串(Use regex object to iterate over all matches in a string)

reobj = re.compile(regex)
for match in reobj.finditer(subject):
&nbsp;&nbsp;&nbsp;&nbsp;# match start: match.start()
&nbsp;&nbsp;&nbsp;&nbsp;# match end (exclusive): match.end()
&nbsp;&nbsp;&nbsp;&nbsp;# matched text: match.group()

字符串替換

1.替換所有匹配的子串

#用newstring替換subject中所有與正則表達(dá)式regex匹配的子串
result = re.sub(regex, newstring, subject)

2.替換所有匹配的子串(使用正則表達(dá)式對(duì)象)

reobj = re.compile(regex)
result = reobj.sub(newstring, subject)

字符串拆分

1.字符串拆分

result = re.split(regex, subject)

2.字符串拆分(使用正則表示式對(duì)象)

reobj = re.compile(regex)
result = reobj.split(subject)

相關(guān)文章

  • Sanic框架安裝與簡(jiǎn)單入門示例

    Sanic框架安裝與簡(jiǎn)單入門示例

    這篇文章主要介紹了Sanic框架安裝與簡(jiǎn)單用法,結(jié)合實(shí)例形式簡(jiǎn)單分析了Sanic框架的概念、原理、pip命令安裝以及使用方法,需要的朋友可以參考下
    2018-07-07
  • Python實(shí)現(xiàn)自動(dòng)添加腳本頭信息的示例代碼

    Python實(shí)現(xiàn)自動(dòng)添加腳本頭信息的示例代碼

    這篇文章給大家介紹的一段腳本是自動(dòng)添加注釋信息的腳本,添加的信息包括腳本名稱、作者和時(shí)間等之類的,對(duì)于團(tuán)隊(duì)形成統(tǒng)一的編碼規(guī)則很有幫助。有需要的可以參考借鑒。
    2016-09-09
  • Python實(shí)現(xiàn)雙色球號(hào)碼隨機(jī)生成

    Python實(shí)現(xiàn)雙色球號(hào)碼隨機(jī)生成

    和體彩大樂透類似,福彩雙色球也是購(gòu)買次數(shù)最多的彩種之一,相比大樂透,雙色球更容易中小獎(jiǎng)。本文將介紹?Python?實(shí)習(xí)雙色球彩票自由的流程,感興趣的可以了解一下
    2022-05-05
  • Python統(tǒng)計(jì)純文本文件中英文單詞出現(xiàn)個(gè)數(shù)的方法總結(jié)【測(cè)試可用】

    Python統(tǒng)計(jì)純文本文件中英文單詞出現(xiàn)個(gè)數(shù)的方法總結(jié)【測(cè)試可用】

    這篇文章主要介紹了Python統(tǒng)計(jì)純文本文件中英文單詞出現(xiàn)個(gè)數(shù)的方法,結(jié)合實(shí)例形式總結(jié)分析了Python針對(duì)文本文件的讀取,以及統(tǒng)計(jì)文本文件中英文單詞個(gè)數(shù)的4種常用操作技巧,需要的朋友可以參考下
    2018-07-07
  • Python實(shí)現(xiàn)自動(dòng)回復(fù)QQ消息功能的示例代碼

    Python實(shí)現(xiàn)自動(dòng)回復(fù)QQ消息功能的示例代碼

    這篇文章主要為大家詳細(xì)介紹了如何利用Python語(yǔ)言實(shí)現(xiàn)自動(dòng)回復(fù)QQ消息功能,文中的示例代碼講解詳細(xì),具有一定的借鑒價(jià)值,需要的可以參考一下
    2022-10-10
  • Python曲線平滑的實(shí)現(xiàn)示例

    Python曲線平滑的實(shí)現(xiàn)示例

    本文主要介紹了Python曲線平滑的實(shí)現(xiàn)示例,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2022-05-05
  • 我用Python抓取了7000 多本電子書案例詳解

    我用Python抓取了7000 多本電子書案例詳解

    這篇文章主要介紹了我用Python抓取了7000 多本電子書案例,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-03-03
  • Pandas之MultiIndex對(duì)象的示例詳解

    Pandas之MultiIndex對(duì)象的示例詳解

    這篇文章主要介紹了Pandas之MultiIndex對(duì)象的示例詳解,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-06-06
  • 利用python實(shí)現(xiàn)短信和電話提醒功能的例子

    利用python實(shí)現(xiàn)短信和電話提醒功能的例子

    今天小編就為大家分享一篇利用python實(shí)現(xiàn)短信和電話提醒功能的例子,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧
    2019-08-08
  • python求最大值,不使用內(nèi)置函數(shù)的實(shí)現(xiàn)方法

    python求最大值,不使用內(nèi)置函數(shù)的實(shí)現(xiàn)方法

    今天小編就為大家分享一篇python求最大值,不使用內(nèi)置函數(shù)的實(shí)現(xiàn)方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧
    2019-07-07

最新評(píng)論