如果您有一个包含多行文本的文本文件,是否有现成的方法将其转换为 JSON Lines 格式?
示例文本文件包含:
This is the first line.
This is the "second" line.
This is the \third/ line.
This is the {fourth} line;
示例 JSON 行 (.jsonl) 文件:
{"text": "This is the first line."}
{"text": "This is the \"second\" line."}
{"text": "This is the \\third\/ line."}
{"text": "This is the {fourth} line;"}
我希望有一种简单的方法可以像这样对它进行线性变换,同时转义 JSON 的特殊字符。是否有适用于 Mac 的在线或 (CLI) 工具可以做到这一点?