Python正则表达式
Posted Kimisme
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python正则表达式相关的知识,希望对你有一定的参考价值。
1.re.match函数
import re print re.match("www","www.baidu.com").span()#(0,3)
2.group
import re line = "Cats are smarter than dogs" matchObj = re.match(r‘(.*) are (.*?) .*‘,line,re.M | re.I) if matchObj: print matchObj.group()#Cats are smarter than dogs print matchObj.group(1)#Cats print matchObj.group(2)#smarter
3.re.search()
import re print re.search("com","www.baidu.com").span()#(10, 13)
4.re.sub()
import re phone = "2004-959-559 # This is Phone Number" num = re.sub(r‘#.*$‘,"",phone) print "Phone Num:",num#Phone Num: 2004-959-559 num = re.sub(r‘\D‘,"",phone) print "Phone Num:",num#Phone Num: 2004959559
以上是关于Python正则表达式的主要内容,如果未能解决你的问题,请参考以下文章