网络学院 w3pop社区 网络资源 IT新闻

w3pop.com :: 网络学院 :: ASP :: ASP Skip 方法

会员登陆

帐号

密码

回答

记住密码

忘记密码? 注册

ASP Skip 方法


作者:w3pop.com 翻译/整理:w3pop.com 发布:2007-04-28 浏览:1048 :: ::

The Skip method skips a specified number of characters when reading a TextStream file.
ASP Skip的作用是:当读取一个文本文件时,使用这种方法可以直接跳过指定数量的字符数进行阅读。

Syntax
语法

TextStreamObject.Skip(numchar)

Parameter
参数
Description
描述
numchar Required. The number of characters to skip
必要参数。指定跳过字符的数量

Example
举例

<%
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)
%>

Output:

The output after skipping some characters: orld!


评论 (0) All