最新的Web開發教程
 

ASP skip方法


<完整文本流對象參考

讀取文本流文件時跳過方法跳過指定的字符數。

句法

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!

<完整文本流對象參考