Hi guys I have a problem at hand that I can\'t seem to figure out, I have a string (C#) which looks like this:
string tags = \"cars, motor, whee
make use of Split function will do your task...
string[] s = tags.Split(',');
or
String.Split Method (Char[], StringSplitOptions)
char[] charSeparators = new char[] {',',' '}; string[] words = tags.Split(charSeparators, StringSplitOptions.RemoveEmptyEntries);