使用 date-reformatter 可以自动将 txt 文档中 YYYY/MM/DD
格式的日期转换为 MM/DD/YYYY
格式。
假设 input.txt
文件中的内容如下:
1;2023/1/2;9;Strong;With the help of her AI dog, a sixteen year-old girl must get her sick mother to another planet where a better life awaits.
2;2023/1/4;14;LAL;Born with a word from nothing, the creature must eat one of its own to survive.
3;2023/1/6;23;Gemini;A man suffering from amnesia searches for whispers of his past in a post-apocalyptic world, while being hunted by human-like "Agents".
运行脚本后,output.txt
文件中的内容将变为:
1;1/2/2023;9;Strong;With the help of her AI dog, a sixteen year-old girl must get her sick mother to another planet where a better life awaits.
2;1/4/2023;14;LAL;Born with a word from nothing, the creature must eat one of its own to survive.
3;1/6/2023;23;Gemini;A man suffering from amnesia searches for whispers of his past in a post-apocalyptic world, while being hunted by human-like "Agents".
日期从 YYYY/MM/DD
格式转换为了 MM/DD/YYYY
格式。
请确保您的系统上安装了 Python 3.6 或更高版本。
- 将仓库克隆或下载到计算机上的一个目录中。
- 修改
start.command (Mac)
或start.bat (Win)
中的路径,以指向您存放date-reformatter.py
脚本的目录。 - 将要处理的文本保存为
input.txt
文件,并放在与脚本相同的目录中。 - 双击运行
start.command
或start.bat
脚本以执行date-reformatter.py
脚本。 - 结果将写入到同一目录下名为
output.txt
的文件中。
With date-reformatter, you can automatically convert dates in the YYYY/MM/DD
format to the MM/DD/YYYY
format in a txt document.
Assuming the contents of the input.txt
file are as follows:
1;2023/1/2;9;Strong;With the help of her AI dog, a sixteen year-old girl must get her sick mother to another planet where a better life awaits.
2;2023/1/4;14;LAL;Born with a word from nothing, the creature must eat one of its own to survive.
3;2023/1/6;23;Gemini;A man suffering from amnesia searches for whispers of his past in a post-apocalyptic world, while being hunted by human-like "Agents".
After running the script, the content of the output.txt
file will be:
1;1/2/2023;9;Strong;With the help of her AI dog, a sixteen year-old girl must get her sick mother to another planet where a better life awaits.
2;1/4/2023;14;LAL;Born with a word from nothing, the creature must eat one of its own to survive.
3;1/6/2023;23;Gemini;A man suffering from amnesia searches for whispers of his past in a post-apocalyptic world, while being hunted by human-like "Agents".
The dates have been converted from the YYYY/MM/DD
format to the MM/DD/YYYY
format.
Make sure you have Python 3.6 or higher installed on your system.
- Clone or download the repository to a directory on your computer.
- Modify the path in
start.command (Mac)
orstart.bat (Win)
to point to the directory where you store thedate-reformatter.py
script. - Save the text to be processed as an
input.txt
file and place it in the same directory as the script. - Double-click
start.command
orstart.bat
to execute thedate-reformatter.py
script. - The result will be written to a file named
output.txt
in the same directory.