I'm trying to get a substring based on length and or character association.
The string looks like this. string = " 1.11 << Z99E004Z "
I want to somehow invert the string so the alphanumeric substring is on the right and integer is on the right.
I've tried string1 = (string[6:16]) etc but doesn't work as the integer can be more than 3 characters.