基础知识:关于问题:来自 Google Adwords 的 .cvs 报告是如何编码的?
详细信息:我正在尝试使用 powerquery 从 adwords 导入 .csv,但在我的一生中,我无法让“,”(逗号)字符出现在我的导入中。
我的代码:
let
// Get raw file data as txt file,
fnRawFileContents = (fullpath) as table =>
let
EveryLine = Lines.FromBinary(File.Contents(fullpath),1,true,1200),
Value = Table.FromList((EveryLine),Splitter.SplitByNothing())
in
Value,
// Use functions to load contents
Source = fnRawFileContents("C:\Users\Jamie.Marshall\Desktop\Emma\adwordsDoc.csv"),
#"Removed Top Rows" = Table.Skip(Source,1)
in
#"Removed Top Rows"
事实:
- Adwords 文档说他们使用 UTC-16LE
- M 中的 UTC-16LE 是代码页 1200
- 在任何编码设置(Unicode、Unicode Big Endian、UTF-8、ASNI)下,我都无法在记事本中打开 Adwords .csv
- 如果将 excel 中的文件重新保存为 UnicodeText,我可以使用记事本将其打开为带有换行符的 Unicode Big Endian,但没有逗号 (",")。
- 如何验证这些文档的编码?
- 这可能是什么其他编码?
- 对此的任何帮助将不胜感激。