Split string into array of character strings
"cat".split("(?!^)")
This will produce
array ["c", "a", "t"]
String str = "cat";
char[] cArray = str.toCharArray();
"cat".toCharArray()
But if you need strings
"cat".split("")
Edit: which will return an empty first value.