欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

VBS教程:方法-Skip 方法

程序员文章站 2022-06-23 21:11:30
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