C
Christian O'Connell
Hello - in Java you have a class called java.util.StringTokenizer that
tokenizes strings, ie
StringTokenizer st=new StringTokenizer("In the beginning "," ",false);
while (st.next())
System.out.println(st.nextToken());
would print out "In", "the", and "beginning", as separate string
tokens, the string being tokenized on the " " (space) character. Is
there a similar utility class in VB.Net.
Chris
tokenizes strings, ie
StringTokenizer st=new StringTokenizer("In the beginning "," ",false);
while (st.next())
System.out.println(st.nextToken());
would print out "In", "the", and "beginning", as separate string
tokens, the string being tokenized on the " " (space) character. Is
there a similar utility class in VB.Net.
Chris