如何使用正则表达式在分号后获取数字

时间:2016-12-18 05:08:58

标签: python

line=[::1]:12345

如何在python中使用正则表达式单独提取::112345

1 个答案:

答案 0 :(得分:1)

line='[::1]:12345'

import re
match = re.findall(r'::\d+|(?<=:)\d{2,}', line)
print(match)

出:

['::1', '12345']