我试图将存储在文件路径中的文本文件的每一行解析为我的字符串数组。但是,看来我用换行符以外的字符(例如,逗号)分隔。有没有一种专门用换行符解析的方法?预先感谢您的指导。

'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

最佳答案

Input #语句通常用于读取用Write #语句编写的数据。如果您只想阅读一行文本,则可以使用Line Input #

10-05 21:25