亲宝软件园·资讯

展开

python 包 re 正则匹配

autofelix 人气:0

一、开头匹配

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

加载全部内容

相关教程
猜你喜欢
用户评论