欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP Skip 方法

定義和用法

Skip 方法在讀取 TextStream 文件時跳過指定的字符數(shù)目。

語法:

TextStreamObject.Skip(numchar)
參數(shù) 描述
numchar 必需的。需要跳過的字符數(shù)目。

實(shí)例

<%
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!