gpt4 book ai didi

python - 如何从字符串中提取 float

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

我有许多类似于 Current Level: 13.4 db. 的字符串,我想只提取 float 。我说 float 而不是十进制,因为它有时是完整的。 RegEx 可以做到这一点还是有更好的方法?

最佳答案

如果你的 float 总是用十进制表示

>>> import re
>>> re.findall("\d+\.\d+", "Current Level: 13.4db.")
['13.4']

可能就够了。

更强大的版本是:

>>> re.findall(r"[-+]?(?:\d*\.\d+|\d+)", "Current Level: -13.2db or 14.2 or 3")
['-13.2', '14.2', '3']

如果您想验证用户输入,您也可以通过直接单步执行来检查 float :

user_input = "Current Level: 1e100 db"
for token in user_input.split():
try:
# if this succeeds, you have your (first) float
print float(token), "is a float"
except ValueError:
print token, "is something else"

# => Would print ...
#
# Current is something else
# Level: is something else
# 1e+100 is a float
# db is something else

关于python - 如何从字符串中提取 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4703390/

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