Python里的正則表達(dá)式re:
成都創(chuàng)新互聯(lián)公司自2013年創(chuàng)立以來,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元衢州做網(wǎng)站,已為上家服務(wù),為衢州各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:13518219792
pattern:匹配模式,遵循正則表達(dá)式語法
method:匹配方法,search/match/split/findall/finditer/sub/subn
re模塊介紹
re.search:搜索字符串,找到匹配的第一個(gè)字符串
re.match:從字符串開始開始匹配
re.split:使用正則表達(dá)式來分隔字符串
re.findall:根據(jù)正則表達(dá)式從左到右搜索匹配項(xiàng),返回匹配的字符串列表
re.finditer:根據(jù)正則表達(dá)式從左到右搜索匹配項(xiàng),返回一個(gè)迭代器返回MatchObject
re.sub:字符串替換
re.subn:與sub一樣,返回值多替換的字符串個(gè)數(shù)
re.group:返回匹配組:索引0表示全部匹配的字符串,索引1開始表示匹配的子組
re.groupdict:返回命名組的字典
re.groups:返回匹配的子組,索引從1開始的所有子組
操作解說示例:
re_demo(): txt=m=.search(,txt) m.groups() re_method(): s=.search(,s) .match(,s) .match(,s)re_method_2(): s=.split(,s)re_method_3(): s1=s2=.findall(,s1).findall(,s2) re_method_4(): s2 = i=.finditer(,s2) m i: m.group() re_method_5(): s2 = .sub(,,s2) .subn(, , s2) re_method_6(): data=m=.match(,data) m.group(,,) m.groups()__name__==: re_method_6()