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==‘] ‘‘‘
2.search()
以上是关于python 正则的主要内容,如果未能解决你的问题,请参考以下文章