I have something like this:
string[] names= {"john","joe", "jim"};
data="john,4,3,6,joe,3,6,2,jim,3,6,7";
string[] results=data.Split(names,StringSplitOptions.RemoveEmptyEntries);
this gives:
,4,3,6
,3,6,2
,3,6,7
but i want the names to be in the results array as well.