首页 > 编程 > VBScript > 正文

adodb.stream读文件到数组的代码

2020-07-26 11:55:41
字体:
来源:转载
供稿:网友
Function filenum(filename,i)
Dim st,s 
Set st= CreateObject("ADODB.Stream")
st.Type = 2 '流类型为文本
st.Mode = 3 '模式为读写
st.Open
st.LineSeparator=13 
st.LoadFromFile filename
Do While Not St.EOS 
s = Split(st.readtext(), vbCrLf)   
Loop 
'MsgBox UBound(s) total
filenum=s(i)
st.Close
End function


MsgBox filenum("file.txt",2)
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表