Hi need some help to separate my string.
I'm reading my text from file. The format is "name,1,2,3"
What i need to do is to seperate out the entire string to:
String name = "name";
String one = "1";
String two = "2";
String three = "3";
The commas are the seperator to the string.
I've tried to write a for loop to capture the text. but no good results so far.
Can anyone give me a heads up please?