I'm taking users input from one textbox where multiple choices will be separated by commas, like:
Peter Gabriel, John Snow, Lebron James
I'm separating these strings like
string[] inputAuthors = txtAuthors.Text.Split(',');
now I want from inputAuthors[0] (Peter Gabriel) to select separated Peter and Gabriel. As I see the only way is to split this strings as space as index of separation, but I don't know how to do it.