python 正则表达提取方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 正则表达提取方法相关的知识,希望对你有一定的参考价值。

1,正则表达提取 (findall函数提取)

import re

a= "<div class=‘content‘>你大爷</div>"
x=re.findall("<div class=‘content‘>(.*)</div>",a)

print x[0]

技术分享


以上是关于python 正则表达提取方法的主要内容,如果未能解决你的问题,请参考以下文章

python利用正则表达式提取字符串

用python正则表达式提取字符串

Python 正则表达式提高

使用 Python 正则表达式提取数据

python正则表达式

python--正则表达式