python re.sub

Posted Howhy Blogs

tags:

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

str1="2017-10-15 this is happy day..."
>>> re.sub("(\d{4})-(\d{2})-(\d{2})",r"\2/\3/\1",str1)
##‘10/15/2017 this is happy day...‘
>>> re.sub("(?P<year>\d{4})-(?P<month>\d{2})-(?P<day>\d{2})",r"\g<month>/\g<day>/\g<year>",str1)
#‘10/15/2017 this is happy day...‘

 

以上是关于python re.sub的主要内容,如果未能解决你的问题,请参考以下文章

Python re.sub 替换 html 属性

python re.sub 带有要查找的单词列表

Python re.sub 字符串上的多行

如何在 Python 3.9 中从 re.sub 中删除反斜杠

python re.sub

python re 与 re.sub替换部分文件