gpt4 book ai didi

python - 如果数字长度为 5 位或更长,则在 python 中中断字符串

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

我知道我可以使用以下方法在 python 中断开字符串:

s = re.split("[0-9]|  ", string)[0].strip()

但是,只有当我有 5 个或更多连续数字时,我才想断开字符串。

例如

Hello1234 => Hello1234
Hello12345 => Hello

我怎样才能做到这一点?

最佳答案

有点像

s = re.split("[0-9]{5,}", string)[0].strip()

关于python - 如果数字长度为 5 位或更长,则在 python 中中断字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41594338/

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