您好,登錄后才能下訂單哦!
Python里的正則表達式re:
pattern:匹配模式,遵循正則表達式語法
method:匹配方法,search/match/split/findall/finditer/sub/subn
re模塊介紹
re.search:搜索字符串,找到匹配的第一個字符串
re.match:從字符串開始開始匹配
re.split:使用正則表達式來分隔字符串
re.findall:根據正則表達式從左到右搜索匹配項,返回匹配的字符串列表
re.finditer:根據正則表達式從左到右搜索匹配項,返回一個迭代器返回MatchObject
re.sub:字符串替換
re.subn:與sub一樣,返回值多替換的字符串個數
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()
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。