使用Python在文本中查找x位数字

时间:2014-08-27 16:54:49

标签: python search text-processing

是否有更好(更有效)的方法来查找文本中的x位数字(数字由x位数组成)?

我的方式:

编辑:

for n in range(0,len(text)):
    if  isinstance(text[n:n+x], (int)) and isinstance(text[n:n+x+1] is False:
        result = text[n:n+x]

return result

编辑2:

for n in range(0,len(text)):
    try:  
       int(text[n:n+x])
       result = text[n:n+x]
    except:
       pass

return result

3 个答案:

答案 0 :(得分:3)

import re                                             
string = "hello 123 world 5678 897 word"              
number_length = 3                                     
pattern= r"\D(\d{%d})\D" % number_length   # \D to avoid matching 567           
print re.findall(pattern, string)

<强>输出

["123","897"]

答案 1 :(得分:2)

您可以使用正则表达式来实现这一目标。例如

>>> import re

>>> s = "abc 123 45678"
>>> re.search("(\d{5})\D",s).group()
'45678'

在s中找到一个5位数字。或者,如果您有多个号码,请使用findall

>>> s = "abc 123 45678\nbla foo 65432"
>>> re.findall("(\d{5})\D",s)
['45678', '65432']

答案 2 :(得分:0)

exampleText = "abcd12345xyz"

import re

match = re.search('\d+',exampleText)
print(match.group())