1. 程式人生 > >python 正則表示式找出字串中的純數字

python 正則表示式找出字串中的純數字

1、簡單的做法

>>> import re
>>> re.findall(r'\d+', 'hello 42 I'm a 32 string 30')
['42', '32', '30']

然而,這種做法使得字串中非純數字也會識別

>>> re.findall(r'\d+', "hello 42 I'm a 32 str12312ing 30")
['42', '32', '12312', '30']

2、識別純數字

如果只需要用單詞邊界( 空格句號逗號) 分隔的數字,你可以使用 \b

>>>
re.findall(r'\b\d+\b', "hello 42 I'm a 32 str12312ing 30") ['42', '32', '30'] >>> re.findall(r'\b\d+\b', "hello,42 I'm a 32 str12312ing 30") ['42', '32', '30'] >>> re.findall(r'\b\d+\b', "hello,42 I'm a 32 str 12312ing 30") ['42', '32', '30']