VB.NET Textfieldparser starts from 2nd line

1k views Asked by At

I got a text file, for example :

firstline
secondline
thirdline
fourthline
fifthline

by using textfieldparser method, How do i start from the second line and stop at the fourth line? and try to parse each line with fieldwidths {2,4,3,1}.

this is the result output i expect to be:

se cond lin e
th irdl ine 0
fo urth lin e
0

There are 0 answers