Adding comma separated strings to an ArrayList and vice versa

前端 未结 11 1260
旧巷少年郎
旧巷少年郎 2021-01-01 05:18

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\".

<
11条回答
  •  余生分开走
    2021-01-01 06:08

    You could use the split() method on String to convert the String to an array that you could loop through.

    Although you might be able to skip the looping and parsing with a regular expression to remove the spaces using replaceAll() on a String.

提交回复
热议问题