当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


ASP SkipLine用法及代码示例


ASP SkipLine方法用于在读取文件内容时从文本文件跳过一行。它是TextStream对象的预定义方法。

用法:

TextStreamObject.SkipLine

例:下面的代码说明了ASP SkipLine方法。

ASP

<% 
dim gfg,f,t,x 
set gfg=Server.CreateObject("Scripting.FileSystemObject") 
set f=gfg.CreateTextFile("d:\GFG.txt") 
f.writeline("Hello geeks") 
f.writeline("Google Chrome") 
f.writeline("Sudo placement") 
f.close 
  
set t=gfg.OpenTextFile("d:\GFG.txt",1,false) 
t.SkipLine 
x=t.ReadAll 
t.close 
Response.Write("Output after skipping the first lime is:") 
Response.Write(x) 
%>

输出:

Output after skipping the first line is:
Google chrome
Sudo placement

相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 ASP SkipLine Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。