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
No loop needed. Just a call to Split():
Split()
var individualStrings = tags.Split(new string[] { ", " }, StringSplitOptions.RemoveEmptyEntries);