I have a line of data that came out of ocr's a page in QF. I need to break the line apart. I want to take the 1st numbers for one token, the second set for another token and so forth. How do I use the spaces (which could be variable) to break the line up.
Imput Line looks something like this:
1233 131911 11111333 222222
I've tried this, without success- and have read all I could find on Answers, without luck.
(\d+) \d+ \d+ \d+ 1st set
\d+ \d+ (\d+) \d+ 3rd set
What I need is a token for 1233, one for 11111333 and one for 4th set.
The spaces between the numbers are a natural break,- but they can be variable.
Any help would be appreciated.