Displaying 1 result from an estimated 1 matches for "a10b10".
2007 Jul 09
2
parsing strings
...digits (one or two digits), possibly with one or
more spaces between the sets of letters and digits. A set of letters
always belongs to the following 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 lett...