How to add a comma separated string to an ArrayList? My string \"returnedItems\" could hold 1 or 20 items which I\'d like to add to my ArrayList \"selItemArrayList\".
You could use the split() method on String to convert the String to an array that you could loop through.
split()
Although you might be able to skip the looping and parsing with a regular expression to remove the spaces using replaceAll() on a String.