只读字符串

时间:2017-11-23 06:26:17

标签: python regex string

我看过Q& A,如thisthis,但我仍有问题。

我想要的是获取一个可能包含非数字字符的字符串,我想只从该字符串中提取2个数字。因此,如果我的字符串为12 ds d21a,我想提取['12', '21']

我尝试使用:

import re
non_decimal = re.compile(r'[^\d.]+')
non_decimal.sub("",input())

并提供此字符串12 123124kjsv dsaf31rn。结果是12123124这很好,但我想要非数字字符来分隔数字。

接下来,我尝试添加split - non_decimal.sub("",input().split())。没有帮助。

我该怎么做(假设有一种方法不包括扫描整个字符串,迭代它并提取数字"手动")?

要获得更多说明,{C}

是我想要实现的目标

3 个答案:

答案 0 :(得分:6)

您希望在这种情况下使用re.findall()方法 -

input_ = '12 123124kjsv dsaf31rn' 
non_decimal = re.findall(r'[\d.]+', input_)

输出 -

['12', '123124', '31']

答案 1 :(得分:2)

@Vivek答案将解决您的问题。

这是另一种方法,只是一种意见:

import re
pattern=r'[0-9]+'
string_1="""12 ds  d21a
12 123124kjsv dsaf31rn"""

match=re.finditer(pattern,string_1)
print([find.group() for find in match])

输出:

['12', '21', '12', '123124', '31']

答案 2 :(得分:1)

如果要提取的只是正整数,请执行以下操作:

>>> string = "h3110 23 cat 444.4 rabbit 11 2 dog"
>>> [int(x) for x in string.split() if x.isdigit()]
[23, 11, 2]

然后,如果你想要更多的条件,并希望包括科学记数法:

import re

# Format is [(<string>, <expected output>), ...]
ss = [("apple-12.34 ba33na fanc-14.23e-2yapple+45e5+67.56E+3",
       ['-12.34', '33', '-14.23e-2', '+45e5', '+67.56E+3']),
      ('hello X42 I\'m a Y-32.35 string Z30',
       ['42', '-32.35', '30']),
      ('he33llo 42 I\'m a 32 string -30', 
       ['33', '42', '32', '-30']),
      ('h3110 23 cat 444.4 rabbit 11 2 dog', 
       ['3110', '23', '444.4', '11', '2']),
      ('hello 12 hi 89', 
       ['12', '89']),
      ('4', 
       ['4']),
      ('I like 74,600 commas not,500', 
       ['74,600', '500']),
      ('I like bad math 1+2=.001', 
       ['1', '+2', '.001'])]

for s, r in ss:
    rr = re.findall("[-+]?[.]?[\d]+(?:,\d\d\d)*[\.]?\d*(?:[eE][-+]?\d+)?", s)
    if rr == r:
        print('GOOD')
    else:
        print('WRONG', rr, 'should be', r)

取自this