re.compile匹配
Posted komean
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了re.compile匹配相关的知识,希望对你有一定的参考价值。
import re
string = '<h4 class="title">愤怒的葡萄</h4>'
pattern = '<h4 class="title">(.*?)</h4>'
# pattern = '.*?\\s'
s = re.compile(pattern).findall(string)
print(s)
以上是关于re.compile匹配的主要内容,如果未能解决你的问题,请参考以下文章
使用 python re.compile 和漂亮的汤来匹配一个字符串
python 正则表达式 re,compile速度慢 ,怎样可以使的re.compile的速度更快