python: 正则(二)_findall();search();finditer();compile()
findall():请注意看是find+all的组合,表示把第二个字符串参数从头到尾搜索一遍,并输出符合第一个字符串参数的内容,以列表的形式输出。注意区别findall与match()和search()的区别。mstr='45-83-9-def-38-84-99'print(re.findall('(\d+)-(\d+)-(\d+)',mstr))#[('45','83','9'),('38','