ASP SkipLine Method
ການອະທິບາຍແລະນິຍົມວິທີ
ວິທີການ SkipLine ໃນຂະນະທີ່ອານນອກບລັກບັນນາທິການ TextStream.
ນິຍົມວິທີ:
TextStreamObject.SkipLine
ຄວາມຄິດຕາມ
<% dim fs,f,t,x set fs=Server.CreateObject("Scripting.FileSystemObject") set f=fs.CreateTextFile("c:\test.txt") f.writeline("ສາຍ 1") f.writeline("ສາຍ 2") f.writeline("ສາຍ 3") f.close set t=fs.OpenTextFile("c:\test.txt",1,false) t.SkipLine x=t.ReadAll t.close Response.Write("ການອອກສຽງພາຍຫຼັງການລຶບຄັ້ງທຳອິດ ") Response.Write(" line in the file: " & x) %>
Output:
Output after skipping the first line in the file: Line 2 Line 3