i need to convert String to array of Strings. eg:
String words = "one, two, three, four, five";
into array like
String words1[];
String words1[0]="one";
words1[1]="two";
words1[2]="three";
words1[3]="four";
words1[4]="five";
please guide me