当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP Skip 方法
The Skip method skips a specified number of characters when reading a TextStream file.
ASP Skip的作用是:当读取一个文本文件时,使用这种方法可以直接跳过指定数量的字符数进行阅读。
TextStreamObject.Skip(numchar) |
Parameter 参数 | Description 描述 |
---|---|
numchar | Required. The number of characters to skip 必要参数。指定跳过字符的数量 |
<% 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! |