2019年6月24日

re.compile匹配

摘要: ``` import re string = '愤怒的葡萄' pattern = '(.*?)' # pattern = '.*?\s' s = re.compile(pattern).findall(string) print(s) ``` ![](https://img2018.cnblogs.com/blog/1562865/201906/1562865-20190624203846709... 阅读全文

posted @ 2019-06-24 20:39 小明他很忙 阅读(938) 评论(0) 推荐(0) 编辑

导航