VBS教程:方法-Skip 方法
程序员文章站
2022-03-21 11:31:55
skip 方法读取 textstream 文件时跳过指定数目的字符。object.skip(characters...
skip 方法
读取 textstream 文件时跳过指定数目的字符。
object.skip(characters)
参数
object
必选项。应为 textstream 对象的名称。
characters
必选项。读取文件时跳过的字符数目。
说明
放弃跳过的字符。
下面例子说明如何利用 skip 方法在阅读文本文件前跳过开始的六个字符:
function skiptextfile const forreading = 1, forwriting = 2 dim fso, f set fso = createobject("scripting.filesystemobject") set f = fso.opentextfile("c:\testfile.txt", forwriting, true) f.write "嗨,你好!" set f = fso.opentextfile("c:\testfile.txt", forreading) f.skip(6) skiptextfile = f.readlineend function