[VBA][求助]如何用VB提取文本文件中的某一行内容?多谢大家!
[求助]如何用VB提取文本文件中的某一行内容?多谢大家! Open "d:\test.txt" For Input As #1 ' 打开文件。<BR>Do While Not EOF(1) ' 循环至文件尾。<BR> Input #1, MyString ' 将数据读入变量。<BR> Loop<BR>Close #1 ' 关闭文件。 多谢!可是我刚才试了一下,读不出来呀?我指的是读取其中几行的内容 只能一行行的读,到了你要的地方把内容读出来。 实在不好意思,能举个例子吗? Dim i As Integer, myText As String<BR>Open "d:\test.txt" For Input As #1 ' 打开文件。<BR>Do While Not EOF(1) ' 循环至文件尾。<BR> i = i + 1<BR> If i = 5 Then Line Input #1, mystring: myText = myText & mystring ' 将数据读入变量。<BR> Loop<BR>Close #1 ' 关闭文件。<BR> 非常感谢你们的帮助!谢谢!
页:
[1]