只读字符串中的数字[重复]
Posted
技术标签:
【中文标题】只读字符串中的数字[重复]【英文标题】:Read only numbers from a string [duplicate] 【发布时间】:2018-05-07 00:45:15 【问题描述】:我看过像this 和this 这样的问答,但我还是有问题。
我想要的是得到一个可能包含非数字字符的字符串,我只想从该字符串中提取 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())
。没有帮助。
我该怎么做(假设有一种方法不包括扫描整个字符串、迭代它并“手动”提取数字)?
为了进一步澄清,this 是我想要在 C 中实现的目标。
【问题讨论】:
input_ = '12 123124kjsv dsaf31rn' non_decimal = re.findall(r'[\d.]+', input_)
这样可以吗?
感谢@ClsForCookies!更新了答案!
【参考方案1】:
你想在这种情况下使用re.findall()
方法-
input_ = '12 123124kjsv dsaf31rn'
non_decimal = re.findall(r'[\d.]+', input_)
输出 -
['12', '123124', '31']
【讨论】:
【参考方案2】:如果您要提取的只是正整数,请执行以下操作:
>>> 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。
【讨论】:
【参考方案3】:@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']
【讨论】:
以上是关于只读字符串中的数字[重复]的主要内容,如果未能解决你的问题,请参考以下文章