案例
某软件中log文件,其中日期格式为‘yyyy-mm-dd’:
……
2016-05-23 10:59:26 status unpacked python3-pip:all
2016-05-23 10:59:26 status half-configured python3-pip:all
2016-05-23 10:59:26 status installed python3-pip:all
2016-05-23 10:59:26 status configue python3-pip:all
……
我们想把其中的日期改为美国日期的格式‘mm/dd/yyyy’.
‘2016-05-23’ =>‘05/23/2016’,应如何处理?
核心解析
import os
import re
filepath = os.path.join(os.getcwd(), 'fileDemo\dpkg.log')
print(filepath)
with open(filepath, 'r') as f:
content = f.read()
n_content = re.sub(r'(\d{4})-(\d{2})-(\d{2})', r'\2/\3/\1', content) # 原来的文件并没有被修改,而生成了一个新的副本
m_content = re.sub(r'(?P<year>\d{4})-(?P<month>\d{2})-(?P<day>\d{2})', r'\g<month>/\g<day>/\g<year>', content) # 给分组起一个昵称
print(n_content, m_content, sep="\n---------\n")