I'm trying to find a way to split a string by its letters and numbers but I've had luck.
An example:
I have a string "AAAA000343BBB343"
I am either needing to split it into 2 values "AAAA000343"
and "BBB343"
or into 4 "AAAA"
"000343"
"BBB"
"343"
Any help would be much appreciated
Thanks