从python字符串中提取int数字和float数字

时间:2016-11-28 09:15:21

标签: python python-3.x

我有一个字符串例如:

str1 = "'107.8X98x3.75'"
[107.8, 98, 3.75]
str2 = 'L=130.5mm;L=90mm'
[130.5, 90]
str3 = '圓278.5x15t 304'
[278.5, 15, 304]

我知道如何通过int和float提取,但我不想错过哪些数字出现。

1 个答案:

答案 0 :(得分:1)

正则表达式怎么样?

示例

>>> import re
>>> str1="107.8X98x3.75"
>>> re.findall(r'\d+(?:\.\d+)?', str1)
['107.8', '98', '3.75']