ASP Skip 方法

asp skip 方法

textstream 对象参考手册 完整的 textstream 对象参考手册

skip 方法在读取 textstream 文件时跳过指定数目的字符。

语法

textstreamobject.skip(numchar)

参数 描述
numchar 必需的。需要跳过的字符数目。

实例

<%
dim fs,f,t,x
set fs=server.createobject("scripting.filesystemobject")
set f=fs.createtextfile("c:\test.txt")
f.write("hello world!")
f.close

set t=fs.opentextfile("c:\test.txt",1,false)
t.skip(7)
x=t.readall
t.close
response.write("the output after skipping some characters: " & x)
%>

输出:

the output after skipping some characters: orld!

textstream 对象参考手册 完整的 textstream 对象参考手册
相关文章