求版主帮忙,还是读取数据的问题
现在我有一个tser数据,我编写了如下代码Open "C:\Users\DELL\Desktop\001.tser" For Input As #1
Do While Not EOF(1)
ReDim s1(i)
Line Input #1, s
s1(i) = s
' Print s1(i)
i = i + 1
Loop
While InStr(s, " ") '空格处理
s = Replace(s, " ", " ")
Wend
' Print s
Close #1
s1 = Split(s, vbCrLf)
Print UBound(s1)
这里print 输出的 ubound(s1)为0
这是为什么呢,大神帮我看看,我主要就是想能够把这个s分行就可以
这是附件数据
001.zip
(1.87 KB)