在 vb 2005 中逐行浏览文本文件
因此,我的程序本质上需要逐行遍历纯文本文件:
Read line 1:
Do commands
loop
Read line2:
Do Commands
loop
等等,直到完成整个文件,有人知道这方面有什么好的编码示例吗?所有教程似乎都显示了打开和写入/读取文本文件,但没有介绍如何操作逐行进行。
So my program needs to go through a plain text file line by line essentially:
Read line 1:
Do commands
loop
Read line2:
Do Commands
loop
etc until its done with the entire file does anyone know any good coding examples for this, all the tutorials seem to show open and writing/reading textfiles but nothing on how to do it line by line.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以这样做:
You could do it like this: