gpt4 book ai didi

python - 在 Python 中删除字符串中的最后一个斜杠和数字

转载 作者:太空宇宙 更新时间:2023-11-04 06:49:16 25 4
gpt4 key购买 nike

我有这样的字符串:

文本 23

文本 9

2011-is-going-to-be-cool-455

我需要从 Python 中的字符串中删除最后一个 -number(而且我对正则表达式很糟糕)。

感谢您的帮助!

最佳答案

假设所有文本都以 -number 结尾

>>> s="2011-is-going-to-be-cool-455"
>>> s.rsplit("-",1)[0]
'2011-is-going-to-be-cool'

>>> iwant=s.rsplit("-",1)
>>> if iwant[-1].isdigit():
... print iwant[0]
...
2011-is-going-to-be-cool

关于python - 在 Python 中删除字符串中的最后一个斜杠和数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4710109/

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