python replace正则怎么用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python replace正则怎么用相关的知识,希望对你有一定的参考价值。
下面是我的代码:
s="今天是2015年10月1日国庆节,明天是2015年10月2日"
s=s.replace(r'[0-9]*', '00')
我想把日期替换掉,暂时用00代替,为什么这样没效果,还是原样输出。replace里面不是可以用正则吗?求直接,不要别的方法,就用replace方法
import re
s="今天是2015年10月1日国庆节,明天是2015年10月2日";
result = s.replace("2015年10月1日", "00") #只能用于字符串替换
print result;
result, number = re.subn("\d+年\d+月\d+日", "00", s) #可以用于正则的替换
print result;
print number; 参考技术A sub 不是subn 吧
python 字符串替换功能 string.replace()可以用正则表达式,更优雅
说起来不怕人笑话,我今天才发现,python
中的字符串替换操作
,也就是 string.replace()
是可以用正则表达式
的。
之前,我的代码写法如下,粗笨:
自从发现了正则表达式
也生效后,代码变得优雅简洁:
备注:上图中的base_info
是 pandas
里的 dataframe
数据结构,可以用上述方法使用 string
的 replace
方法。
以上是关于python replace正则怎么用的主要内容,如果未能解决你的问题,请参考以下文章