python 多行匹配

it2022-05-05  181

python 多行匹配 content = ''' abcdefg hijklmn opq rst uvw xyz ''' r = re.compile('\S+cde\S+|\S+klm\S+|^xyz$', re.MULTILINE) r.findall(content) ['abcdefg', 'hijklmn', 'xyz'] posted on 2016-05-11 11:58 北京涛子 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/liujitao79/p/5481402.html


最新回复(0)