given an array
String original[]={"string0,10","string1,45","string2,3", "string3,67"};
how would I use the comma as a delimeter to create another array with only the names?
I need an array that looks something like this:
String result[]={"string0","string1","string2", "string3"};