ASP Column 屬性

2018-09-20 21:31 更新

ASP Column 屬性


TextStream 對(duì)象參考手冊(cè) 完整的 TextStream 對(duì)象參考手冊(cè)

Column 屬性返回輸入流中當(dāng)前字符位置的列號(hào)。

注意:該屬性在新行字符(new line character)被寫入之后為 1 (在其他字符被寫入前)。

語法

TextStreamObject.Column

實(shí)例

<%
dim fs,f,t,x,y
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.AtEndOfStream<>true
??x=t.Read(1)
??y=t.Column-1
loop
t.close
Response.Write("The last character in the text file is: " & x)
Response.Write("<br> at character position: " & y)
%>

輸出:

The last character in the text file is: !
at character position: 12


TextStream 對(duì)象參考手冊(cè) 完整的 TextStream 對(duì)象參考手冊(cè)
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)