ASP AtEndOfLine 屬性

2018-09-09 01:29 更新

ASP AtEndOfLine 屬性


TextStream 對象參考手冊 完整的 TextStream 對象參考手冊

AtEndOfLine 屬性返回一個布爾值。True 指示文件指針緊靠 TextStream 文件中行末標(biāo)記之前,否則返回 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 對象參考手冊
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號