python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > python 包 re 正则匹配

python 包之 re 正则匹配教程分享

作者:autofelix

这篇文章主要介绍了python 包之 re 正则匹配教程分享,文章基于python 包 re的相关资料展开贵主题的详细介绍,需要的小伙伴可以参考一下

一、开头匹配

import re

print(re.match('飞兔小哥', '飞兔小哥教你零基础学编程'))
print(re.match('学编程', '飞兔小哥教你零基础学编程'))

二、全匹配

import re

print(re.fullmatch('飞兔小哥教你零基础学编程', '飞兔小哥教你零基础学编程'))
print(re.fullmatch('飞兔小哥', '飞兔小哥教你零基础学编程'))

三、部分匹配

import re

print(re.search('autofelix', '飞兔小哥教你零基础学编程'))
print(re.search('飞兔小哥', '飞兔小哥教你零基础学编程'))

四、匹配替换

import re

# 去掉电话号码中的-
num = re.sub(r'\D', '', '188-1926-8053')
print(num)
# 18819268053

五、匹配替换返回数量

import re

# 去掉电话号码中的-
num = re.subn(r'\D', '', '188-1926-8053')
print(num)
# (18819268053, 2)

六、分割字符串

import re

print(re.split('a*', 'hello world'))
# ['', 'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', '']

print(re.split('a*', 'hello world', 1))
# ['', 'hello world']

七、匹配所有

import re

pattern = re.compile(r'\W+')
result1 = pattern.findall('hello world!')
result2 = pattern.findall('hello world!', 0, 7)

print(result1)
# [' ', '!']

print(result2)
# [' ']

八、迭代器匹配

import re

pattern = re.compile(r'\W+')
result = pattern.finditer('hello world!')
for r in result:
print(r)

九、编译对象

import re

pattern = re.compile(r'\W+')

十、修饰符

import re

content = "Cats are smarter than dogs"
print(re.search(r'DOGS', content, re.M | re.I))

到此这篇关于python 包之 re 正则匹配教程分享的文章就介绍到这了,更多相关python 包 re 正则匹配内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文