PHP
·
发表于 5年以前
·
阅读量:8299
import re
#用(?P<year>...)括住一个群,并命名为year
m = re.search("output_(?P<year>\d{4})", "output_1986.txt")
print(m.group("year") #输出1986