<完全なテキストストリームオブジェクトリファレンス
テキストストリームのファイルを読み込むときにスキップする方法は、指定された数の文字をスキップします。
構文
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!
<完全なテキストストリームオブジェクトリファレンス