Is there anyway to convert a String
to an ArrayList<Character>
without using regex.
For example:
"abc".methodHere == ArrayList<Character>["a", "b", "c"]
This link converts a String
to an ArrayList<String>
and this link uses Array
and not ArrayList