<完全なテキストストリームオブジェクトリファレンス
Readメソッドは、テキストストリームファイルから指定した数の文字を読み込み、文字列として結果を返します。
構文
TextStreamObject.Read(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)
x=t.Read(5)
t.close
Response.Write("The first five characters are: " & x)
%>
Output:
The first five characters are: Hello
<完全なテキストストリームオブジェクトリファレンス