ASP 列 属性
❮ TextStream 对象完整参考
Column 属性返回输入流中当前字符位置的列号。
注意:写入换行符后(即使在写入任何其他字符之前),此属性的值为 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("文本文件中的最后一个字符是: " & x)
Response.Write("<br> 在字符位置: " & y)
%>
输出
文本文件中的最后一个字符是: !
在字符位置: 12
❮ TextStream 对象完整参考