Notepad++替换日期格式,如替换17-07-2018为2018-07-17

使用正则表达式替换,

(\d{2})-(\d{2})-(\d{4}) 
替换为
\3-\2-\1

Notepad++ 替换日期格式

其他格式替换依次类推~

相关文章: