ASP AtEndOfLine 属性

asp atendofline 属性

textstream 对象参考手册 完整的 textstream 对象参考手册

atendofline 属性返回一个布尔值。true 指示文件指针紧靠 textstream 文件中行末标记之前,否则返回 false。

注意:该属性仅工作于以只读方式打开的 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)
%>

输出:

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

textstream 对象参考手册 完整的 textstream 对象参考手册
相关文章