Say I have string A = "AAaabb";
How do I split this string when there are no spaces, so I can't use space as a delimiter. Is there a like null delimiter, where it just splits all characters?
basically I want an array with each individual character [A, A, a, a, b, b]