Ace Master
Centurion
- Joined
- Aug 28, 2003
- Messages
- 140
Hi.
I know how to make the split for a vbtab for example but can't make it working if I want to make the split for a tab and for each element which start with "#"
this is my code :
How is possible to see if an element from that text file start with "#" and if so to ignore him and not to put in the array.
thanks
I know how to make the split for a vbtab for example but can't make it working if I want to make the split for a tab and for each element which start with "#"
this is my code :
Visual Basic:
Dim my As New System.IO.StreamReader("test.txt")
Dim Line As Object
Line = my.ReadToEnd
my.Close()
info1 = Line.split(vbtab)
How is possible to see if an element from that text file start with "#" and if so to ignore him and not to put in the array.
thanks