gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 22:35:43 25 4
gpt4 key购买 nike

我有一个字符串:string = "2017.5 is halfway through theyear"。有没有办法从字符串中提取这个 "2017.5" ?我尝试使用 string.isdigit(),但这只适用于非 float 。

最佳答案

如果您的 float 始终以十进制表示法表示,例如

>>> import re
>>> re.findall("\d+\.\d+", "2017.5 is halfway through the year")
['2017.5']

可能就足够了。

用于解析 int 和 float(点分隔符)值:

re.findall( r'\d+\.*\d*', '2017.5 is halfway through the year' )

结果:

['2017.5']

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

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