gpt4 book ai didi

python - 删除python中字符串中数字之间的空格

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

我想在 python 中删除字符串中数字之间的所有空格。例如,如果我有

my_string = "my phone number is 12 345 6789"

我希望它成为

my_string = "my phone number is 123456789"

我以为我可以对每个数字都这样做:

for i in range(10):
my_string = my_string.replace(str(i)+" ",str(i))

但这不是一个聪明有效的解决方案。有什么想法吗?

最佳答案

只需使用正则表达式!现在支持可变数量的空格。

import re
my_string = "my phone number is 12 345 6789"
my_string = re.sub(r'(\d)\s+(\d)', r'\1\2', my_string)

关于python - 删除python中字符串中数字之间的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38640791/

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