El método SkipLine de ASP se utiliza para omitir una línea de un archivo de texto al momento de leer el contenido del archivo. Es un método predefinido del objeto TextStream.
Sintaxis:
TextStreamObject.SkipLine
Ejemplo: el siguiente código ilustra el método SkipLine de ASP.
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 line is: ") Response.Write(x) %>
Producción:
Output after skipping the first line is: Google chrome Sudo placement
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA