Split string into array of character strings

"cat".split("(?!^)")

This will produce

array [“c”, “a”, “t”]

Leave a Comment