ASP AtEndOfLine Property

Definition and Usage

The AtEndOfLine property returns a boolean value. True indicates that the file pointer is just before the end-of-line marker, otherwise it returns False.

Note:This property only works on TextStream objects opened in read-only mode.

Syntax:

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