Skip

阅读:24      收藏:0      [点我收藏+]

ASP Skip 方法


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!
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!