G
Guest
Hi. I would like to parse a single string no longer than 10 characters into
separate text and numeric groups. There is no delimiter and data in the
field might look like this:
Input=>Output
"PM1J1S4" => "PM" "1" "J" "1" "S" "4"
"1MM12J3" => "1" "MM" "12" "J" "3"
"2WM1" => "2" "WM" "1"
"3NJ145S123" = "3" "NJ" "145" "S" "123"
Does anybody know a way to parse this, grouping by letters or numbers?
AK
separate text and numeric groups. There is no delimiter and data in the
field might look like this:
Input=>Output
"PM1J1S4" => "PM" "1" "J" "1" "S" "4"
"1MM12J3" => "1" "MM" "12" "J" "3"
"2WM1" => "2" "WM" "1"
"3NJ145S123" = "3" "NJ" "145" "S" "123"
Does anybody know a way to parse this, grouping by letters or numbers?
AK