24-Jun-03 (Created: 24-Jun-03) | More in 'CS-dotnet'

How to tokenize strings in c#

Splitting strings

char[] sepString = new char[]{'1'};
string[] userIdList = customerIdList.Split(sepString);