当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP Skip 方法

ASP
ASP 介绍
ASP Install
ASP 语法
ASP 变量
ASP Procedures
ASP Forms
ASP Cookies
ASP Session
ASP Application
ASP #include
ASP Global.asa
ASP Send e-mail
ASP Response
ASP Request
ASP Application
ASP Session
ASP Server
ASP Error
ASP FileSystem
ASP TextStream

ASP Skip 方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 339 ::
收藏到网摘: n/a

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

登陆 | 还没注册?