我需要将一个String拆分为单个字符String的数组。
例如,拆分“ cat”将得到数组“ c”,“ a”,“ t”
"cat".split("(?!^)")
这将产生
array ["c", "a", "t"]