精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

ASP Column 屬性

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("
at character position: " & y)
%>

輸出:

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

textstream 對象參考手冊 完整的 textstream 對象參考手冊
相關文章