最新的Web開發教程
 

ASP AtEndOfLine Property


<完整文本流對象參考

該AtEndOfLine屬性返回一個布爾值。 真表示該文件指針結束線標記在一個文本流文件之前立即定位。 否則,返回False。

Note:此屬性將只是一個TextStream對象是開放閱讀上工作。

句法

TextStreamObject.AtEndOfLine

<%
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)
do while t.AtEndOfLine<>true
  x=t.Read(1)
loop
t.close
Response.Write("The last character is: " & x)
%>

Output:

The last character of the first line in the text file is: !

<完整文本流對象參考