re例子,仅供参考

Posted lc1013

tags:

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

import re
匹配字符串
# pattern = re.compile(r‘hello‘)

# match = pattern.search(‘ni hello cxy61!‘) #全字符匹配字符串 .search()
# search = pattern.match(‘ai hello‘) #只在开头匹配字符串 .match()
# if match:
# print(match.group())
# else:
# print(‘no match.‘)
#
# if search:
# print(search.group())
# else:
# print(‘no search‘)

替换
time = ‘2017-10-01‘
pattern = re.compile(r‘D‘) #匹配非数字的字符
sub = pattern.sub(‘/‘,time) #替换非数字的字符
print(sub)
print(re.sub(r‘D‘,‘/‘,time)) #也可以这样写,re.sub(表达式,替换字符,内容)
#D非数字的,‘/‘替换字符,time目标;把time里面非数字的都替换为/
























以上是关于re例子,仅供参考的主要内容,如果未能解决你的问题,请参考以下文章

简单爬虫例子

我可以将 re2 库与熊猫一起使用吗?

re库的用法介绍

常用的正则例子

python中re.compile函数的使用

python 正则小例子