最新消息:因从typecho切换到wordpress, 由于转换导入问题,文章可能存在部分乱码或者排版问题,逐个排查修复中...

Replace file content with python regex

业余爱好 admin 862浏览 0评论

In this example,

I read the file to content. we need to replace the string ‘20180827235833’ with ‘20180827_235833’
Code is in python3

content_str = content.decode('utf-8')
dates=re.findall(r'20\d{12}',content_str)                
for d in dates:
    content_str= content_str.replace(d,d[:8] + '_' + d[8:])
content = content_str.encode('utf-8')

转载请注明:Linc Hu » Replace file content with python regex

发表我的评论
取消评论

表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址