, "", , , . . :
string updatedLine = "user,input,two words,even three words";
string[] newInput = Regex.Split(updatedLine, @",");
:
string updatedLine = "user, input, two words, even three words";
string[] newInput = Regex.Split(updatedLine, @",\s+|,");