gpt4 book ai didi

python - 仅从字符串中删除括号之间的数字

转载 作者:行者123 更新时间:2023-12-01 21:28:52 24 4
gpt4 key购买 nike

我有字符串,我只需要删除括号内的数字(也删除括号)来自:

str = "1.25 (10), 1.5 (148), 1.25 (24)"

为此:

"1.25, 1.5, 1.25"

最佳答案

尝试:

import re

x = "1.25 (10), 1.5 (148), 1.25 (24)"

x=re.sub(r'\s*\(\d+\)\s*', '',x)

输出:

>>> x

1.25, 1.5, 1.25

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

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