I have a String with an unknown length that looks something like this
"dog, cat, bear, elephant, ..., giraffe"
What would be the optimal way to divide this string at the commas so each word could become an element of an ArrayList?
For example
List<String> strings = new ArrayList<Strings>();
// Add the data here so strings.get(0) would be equal to "dog",
// strings.get(1) would be equal to "cat" and so forth.