Skip to Content
0
Jan 16, 2008 at 12:56 AM

Split string question - split at non-numeric character

507 Views

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