J'ai une chaîne d'une longueur inconnue qui ressemble à ceci
dog, cat, bear, elephant,… girafe
Quel serait le moyen optimal de diviser cette chaîne par des virgules pour que chaque mot puisse devenir un élément d'un ArrayList?
Par exemple
ArrayList<String> strings = new ArrayList<Strings>();
// Add the Data here so string.get(0) would be equal to "dog",
// strings.get(1) would be equal to "cat" and so forth.