代码

import re

p = re.compile(r'(\d+)-(\d+)-(\d+)')
print(p.match('2018-05-10').group(2))
print(p.match('2018-05-10').groups())

year, month, day = p.match('2018-05-10').groups()
print(year)

运行

最后修改:2020 年 04 月 06 日
如果觉得我的文章对你有用,请随意赞赏