使用 line-indexer 可以为你的文本自动逐行添加索引号。
假设 input.txt
文件中的内容如下:
apple
banana
cherry
运行脚本后,output.txt
文件中的内容将变为:
1;apple
2;banana
3;cherry
每一行前面都添加了一个索引号,用 ;
与原来的内容分隔。
请确保您的系统上安装了 Python 3.6 或更高版本。
- 将仓库克隆或下载到计算机上的一个目录中。
- 修改
start.command (Mac)
或start.bat (Win)
中的路径,以指向您存放line-indexer.py
脚本的目录。 - 将要处理的文本保存为
input.txt
文件,并放在与脚本相同的目录中。 - 双击运行
start.command
或start.bat
脚本以执行line-indexer.py
脚本。 - 结果将写入到同一目录下名为
output.txt
的文件中。
您也可以通过编辑 line-indexer.py
脚本中 {i};{line}
的部分来自定义分隔符,将 ;
替换为您想要的分隔符即可。
With line-indexer, you can automatically add line numbers to your text file.
Assuming the contents of the input.txt
file are as follows:
apple
banana
cherry
After running the script, the content of the output.txt
file will be:
1;apple
2;banana
3;cherry
A line index number is added before each line, separated by a ;
from the original content.
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 theline-indexer.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 theline-indexer.py
script. - The result will be written to a file named
output.txt
in the same directory.
You can also customize the separator by editing the {i};{line}
part in the line-indexer.py
script. Simply replace ;
with your desired separator.