我想使用 python re 模块通过数字数字过滤 int 数字。
1
700
76093
71365
35837
75671
^^
||--------------------- this position should not be 6,7,8,9,0
|---------------------- this position should not be 5,6,7
代码:
int_list=[1,700,76093,71365,35837,75671]
str_list = [str(x).zfill(5) for x in int_list]
reexp = r"\d[0-4,8-9][1-5]\d\d"
import re
p = re.compile(reexp)
result = [int("".join(str(y) for y in x)) for x in str_list if p.match(x)]
我有两个问题:
1.是否可以从以下代码生成reexp字符串:
thousand_position = set([1,2,3,4,5,1,1,1,1,1,1,1,1,1,1])
hundred_position = set([1,2,3,4,8,9,0,1,2,3,2,3,1,2])
2.如何让reexp更简单避免低于0前缀的bug?
00700
00500 <--- this will also drops into the reexp, it is a
bug because it has no kilo number
10700
reexp = r"\d[0-4,8-9][1-5]\d\d"
谢谢你的时间
B.Rgs
PS:感谢您对以下数学解决方案的建议,我知道它可能更容易更快,但我希望基于 re 的版本来平衡其他想法。