99re热这里只有精品视频,7777色鬼xxxx欧美色妇,国产成人精品一区二三区在线观看,内射爽无广熟女亚洲,精品人妻av一区二区三区

ASP Column 屬性

2018-09-20 21:31 更新

ASP Column 屬性


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

Column 屬性返回輸入流中當前字符位置的列號。

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

語法

TextStreamObject.Column

實例

<%
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 對象參考手冊 完整的 TextStream 對象參考手冊
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號