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 对象参考手册
相关文章