gpt4 book ai didi

python - 如何替换字符串中的第一个字母

转载 作者:行者123 更新时间:2023-11-30 21:58:51 32 4
gpt4 key购买 nike

给定字符串为:

s = "python is programming language p"

我想要得到:

s = "2ython is 2rogramming language p"

所以,我想替换所有字母“P/p”,但前提是单词以它开头。

我尝试过这样的事情:

re.sub(r'(^p)*', r'/', string), but it didn't help

最佳答案

您可以使用

re.sub(r'\bp\B', '2', s, flags=re.I)

请参阅regex demo .

如果您需要确保p后有一个字母,请使用

re.sub(r'\bp(?=[^\W\d_])', '2', s, flags=re.I)

参见another regex demo .

详细信息

  • \b - 单词边界
  • p - pP(由于 re.I)
  • \B - 非单词边界(下一个字符必须是单词字符)
  • (?=[^\W\d_]) - 正向前瞻,要求任何字母立即出现在当前位置的右侧。

Python demo :

import re
s = "python is programming language p"
print(re.sub(r'\bp(?=[^\W\d_])', '2', s, flags=re.I))
# => 2ython is 2rogramming language p
print(re.sub(r'\bp\B', '2', s, flags=re.I))
# => 2ython is 2rogramming language p

关于python - 如何替换字符串中的第一个字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54793168/

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