我正在尝试将存储在filepath中的文本文件的每一行解析为我的字符串数组。但是,似乎我用换行符以外的字符(例如逗号)分隔。有没有一种方法可以使用新行字符进行解析?提前感谢您的指导。
'Open filepath For Input As #1
Do While Not EOF(1)
Input #1, script(numlines)
numlines = numlines + 1
If numlines = maxlines Then
maxlines = maxlines + 100
ReDim script(maxlines)
End If
Loop
' Close file
Close #1