Displaying 1 result from an estimated 1 matches for "a10cd2ef3".
2007 Jul 09
2
parsing strings
...llowing set of digits and I want to parse the
strings into these groups. As an example, the strings and the desired
parsing results could look like this:
A10B10, desired parsing result: A10 and B10
A10 B5, desired parsing result: A10 and B5
AB 10 CD 12, desired parsing result: AB10 and CD12
A10CD2EF3, desired parsing result: A10, CD2, and EF3
I assume that it is possible to search a string for letters and digits
and then break the string where letters are followed by digits, however
I am a bit clueless about how I could use, e.g., the 'charmatch' or
'parse' commands to achie...