gpt4 book ai didi

python - 查找字符串中最后出现的子字符串,替换它

转载 作者:IT老高 更新时间:2023-10-28 21:08:23 26 4
gpt4 key购买 nike

所以我有一长串相同格式的字符串,我想找到最后一个“。”每个字符,并将其替换为“。 - ”。我尝试使用 rfind,但似乎无法正确使用它来执行此操作。

最佳答案

应该这样做

old_string = "this is going to have a full stop. some written sstuff!"
k = old_string.rfind(".")
new_string = old_string[:k] + ". - " + old_string[k+1:]

关于python - 查找字符串中最后出现的子字符串,替换它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14496006/

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