I have a List and I would like to split the first two characters (alpha characters) into a different string and then all the numbers that follow (they vary in length). How could I do that?
String wholeString == "AB4578";
String alpha; // this has to be AB
String num; // this has to be 4578
Thank you very much in advance!