python 正则表达式

Posted gaizhongfeng

tags:

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

# -*- coding: utf-8 -*-


import re

#match :从字符串开头匹配字符串 , 如果配到了返回一个对象, 匹配不到返回None
res = re.match("test.", "testasDwoedHello")
print(res)

#获取 匹配的字符串
print(res.group())



#从整个文本开始搜索
sr = re.search("D.+d", "testasDwoedHello")
print(sr.group())




#返回所有
fa = re.findall("[0-9]{1,3}", "tesda123stasDwoe435dHello667Daasdd")
print(fa)



#分割
print(re.split("[0-9]","asdasd1dads222dasd21"))


#替换
print(re.sub("[0-9]","aaa","wer1azx2vff22"))

 

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

python 正则表达式

python成长之路第三篇_正则表达式

python成长之路第三篇_正则表达式

python 正则表达式 re模块基础

Python学习笔记之正则表达式

python基础学习(十三)