当前位置:主页 > 软件编程 > Python代码 >

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

时间:2022-08-12 10:02:31 | 栏目:Python代码 | 点击:

一、开头匹配

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))

您可能感兴趣的文章:

相关文章