单个换行符解释两次

时间:2015-08-14 04:18:50

标签: curl google-docs google-docs-api

我所指的问题很好地解释了here

重申一下,使用google docs api,我可以使用以下curl命令读取多种格式的文件

curl -X GET -H "Authorization: Bearer $access_token" "https://docs.google.com/feeds/download/documents/export/Export?id=$fileID&exportFormat=txt"

问题是,google docs文件中的每个换行符都被解释为两个换行符。

这是有问题的,因为当我更新文件的本地副本并将其上传回谷歌文档时,结果是每个换行都被视为两个换行符。你可以想象,这很快失控。

我该如何解决这个问题?

我无法简单地更换每一个" \ n \ n"用" \ n"因为在某些情况下用户可能会想要多个换行符。

我该如何处理?

0 个答案:

没有答案