I have a string that is in the form of ##R# (# = any number from 0-9 and the quantity of numbers is dynamic). How can I split the string at the first non-numeric character? Below is an example:
String = 12R3
I need var1 = '12' and var2 = 'R3'.
Regards,
Davis