Metodo di salto ASP


❮ Riferimento completo all'oggetto TextStream

Il metodo Skip salta un numero specificato di caratteri durante la lettura di un file TextStream.

Sintassi

TextStreamObject.Skip(numchar)

Parameter Description
numchar Required. The number of characters to skip

Esempio

<%
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)
%>

Output:

The output after skipping some characters: orld!

❮ Riferimento completo all'oggetto TextStream