<完整文本流对象参考
读取文本流文件时跳过方法跳过指定的字符数。
句法
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)
%>
Output:
The output after skipping some characters: orld!
<完整文本流对象参考