gpt4 book ai didi

python - 在 python 中使用正则表达式将字符串中的第一个数字更改为 '#'

转载 作者:太空宇宙 更新时间:2023-11-03 12:27:34 25 4
gpt4 key购买 nike

import re    
sentence = "the cat is called 303worldDomination"
print re.sub(r'\d', r'#', sentence)

但是,这会将字符串中的所有数字替换为“#”

我只想用'#'替换字符串中的第一个数字

最佳答案

您可以使用 count 参数指定只进行一次替换(即第一次匹配):

>>> re.sub(r'\d', r'#', sentence, count=1)
'the cat is called #03worldDomination'

关于python - 在 python 中使用正则表达式将字符串中的第一个数字更改为 '#',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29474338/

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