AHK CSV Parse无法逐行解析

问题描述 投票:0回答:1

使用Autohotkey,我看着AHK Document

我想要读取的文件类型是CSV,所以我测试了例4

enter image description here

这是我的CSV文件。 2行,一些列。

因此,如果打开文件,数据将以逗号和逐行读取逗号。对?

但..

enter image description here

enter image description here

enter image description here

这是打印的答案。

这种情况吓坏了什么?

为什么AHK CSV Parse不是逐行切割数据?

需要一些帮助:<

P.S:代码与例4相同。

Loop, Parse, PositionData, CSV
{
MsgBox, 4, , Field %LineNumber%-%A_Index% is:`n%A_LoopField%`n`nContinue?
IfMsgBox, No, break 
}
csv autohotkey
1个回答
0
投票

我发现。

如果在AHK中读取CSV,则必须逐行读取...

© www.soinside.com 2019 - 2024. All rights reserved.