I know that there's probably a RegEx to use with string.split but I can't figure it out or find the answer.
Say I have a string where each alphabetic character is prefaced by a number:
2A3B12C, for example. How do I split this into an array of ["2A", "3B", "12C"] or failing that, at least get ["2", "A", "3", "B", "12", "C"]