码迷,mamicode.com
首页 > 其他好文 > 详细

逐行读取txt

时间:2014-09-18 22:04:14      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:os   使用   for   文件   sp   on   c   line   ad   

Dim fso, f1, ts, s
Const ForReading = 1
Set fso = CreateObject("Scripting.FileSystemObject")
Set ts = fso.OpenTextFile("e:\serverlist.txt", ForReading)
‘ts.skipline ‘跳过一行
do until ts.AtEndOfStream ‘判断是否到文件末尾

tsline = ts.readline
‘tslines = split(tsline,",") ‘使用,分隔字符串
‘ip = tslines(0) ‘分隔后的第一个字符串
‘username = tslines(1)
‘userpass = tslines(2)

msgbox tsline
loop
ts.close

逐行读取txt

标签:os   使用   for   文件   sp   on   c   line   ad   

原文地址:http://www.cnblogs.com/dreamer-fish/p/3980055.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!