re match findall research

re.match
python

import res= '23432werwre2342werwrew' p = r'(\d*)([a-zA-Z]*)'m = re.match(p,s)print(m.group()) #返回全部匹配內容 23432werwreprint(m.group(0)) #和group()同樣 23432werwreprint(m.group(1)) #返回字串第一個 23432,沒有字串則報錯print(m.group(2)) #返回字串第二個 werwreprint(m.groups()) #返回全部字串組成的元組 ('23432', 'werwre'),若是沒有字串則爲空元組

ffide

相關文章
相關標籤/搜索