gpt4 book ai didi

unicode - iconv:使用 BOM 从 Windows ANSI 转换为 UTF-8

转载 作者:行者123 更新时间:2023-12-03 09:23:12 25 4
gpt4 key购买 nike

我想用iconv在我的 Mac 上转换文件。目标是从“Windows ANSI”变为“Windows 记事本保存的任何内容,如果您告诉它使用 UFT8”。

这就是我要的:

$ file names.csv 
names.csv: UTF-8 Unicode (with BOM) text, with CRLF line terminators

这是我使用的:
$ iconv -f CP1252 -t UTF-8  names.csv > names.utf8.csv 

这就是我得到的(不是我想要的):
$ file names.utf8.csv 
names.utf8.csv: UTF-8 Unicode text, with CRLF line terminators

我如何获得 Material list ?

最佳答案

您可以先手动添加 echo将字节放入文件中:

echo -ne '\xEF\xBB\xBF' > names.utf8.csv

然后在最后连接您所需的信息:
iconv -f CP1252 -t UTF-8  names.csv >> names.utf8.csv

请注意 >>而不是 > .

关于unicode - iconv:使用 BOM 从 Windows ANSI 转换为 UTF-8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4364156/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com