How to extract year, month and day from each strings in a list of strings with Python

1 Answer

0 votes
import re

lst = ['20220117','20010703', '20211027']

print(re.sub(r'(\d{4})(\d{2})(\d{2})', r'year: \1, month: \2, day: \3','\n'.join(lst)))




'''
run:

year: 2022, month: 01, day: 17
year: 2001, month: 07, day: 03
year: 2021, month: 10, day: 27

'''

 



answered Nov 12, 2022 by avibootz
...