> output = re.sub(r'>> output '\r\n<20' 关于Python 使用正则-6ren">
gpt4 book ai didi

Python 使用正则表达式替换

转载 作者:太空狗 更新时间:2023-10-30 00:33:29 26 4
gpt4 key购买 nike

例如,有谁知道如何用“\r\n<\d+”替换所有出现的“<\d+”正则表达式

"<20"

应该转化为

"\r\n<20"

但是

"> HELLO < asassdsa"

应该保持不变

最佳答案

>>> import re
>>> str = "<20"
>>> output = re.sub(r'<(?=\d)', r'\r\n<', str)
>>> output
'\r\n<20'

关于Python 使用正则表达式替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9192416/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com