ASP Skip 方法
asp skip 方法

skip 方法在讀取 textstream 文件時跳過指定數(shù)目的字符。
語法
textstreamobject.skip(numchar)
參數(shù) | 描述 |
---|---|
numchar | 必需的。需要跳過的字符數(shù)目。 |
實例
<%
dim fs,f,t,x
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)
t.skip(7)
x=t.readall
t.close
response.write("the output after skipping some characters: " & x)
%>
輸出:
the output after skipping some characters: orld!
dim fs,f,t,x
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)
t.skip(7)
x=t.readall
t.close
response.write("the output after skipping some characters: " & x)
%>
輸出:
the output after skipping some characters: orld!

相關(guān)文章
- ASP FileSystem 對象
- ASP 教程
- ASP Skip 方法
- ASP Write 方法
- ASP DateLastAccessed 屬性
- ASP ShortName 屬性
- ASP Size 屬性
- ASP Delete 方法
- ASP SubFolders 集合
- ASP CreateTextFile 方法
- ASP Items 方法
- ASP Status 屬性
- ASP Flush 方法
- ASP Redirect 方法
- ASP Form 集合
- ASP Session_OnStart 和 Session_OnEnd 事件
- ASP ScriptTimeout 屬性
- ASP Execute 方法
- ASP GetParentFolderName 方法
- ASP GetTempName 方法