python 正则

Posted huay

tags:

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

正则

常用方法

1.findall()

返回结果为列表

技术图片
‘‘‘
内容提取
‘‘‘
data=window.QRLogin.code = 200; window.QRLogin.uuid = "gbGEZLvmhQ==";
import re
ret=re.findall(uuid = "(.*)",data)
print(ret)
‘‘‘
结果
[‘gbGEZLvmhQ==‘]
‘‘‘
View Code

2.search()

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

Python——正则表达式

python-正则

Python 正则表达式

详解 Python3 正则表达式系列索引

python大法好——Python 正则表达式

Python学习:13.Python正则表达式