Can you provide an example of what you have so far?
How are your tokens structured?
Typically, if you want to split a string using some character, you write something like:
strMyString.Split(';');
That will split the string on the ; character into an array of strings.
-
Peter