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 对象参考手册

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号