I have the following data and need to separate just the numbers into 3 different columns. I used the RegEx tool with (\d+) as my expression and parse, this will move the first set of numbers to a column but I can't repeat this for the other 2 sets. Please help!
Example: This is the beginning data I'm using (in one column, can be multiple rows with different sets of numbers and not always separated with a character).
| Use 12345678, 89012345678, 999999999 for best results |
Results I want:
| Sequence #1 | Sequence #2 | Sequence #3 |
| 12345678 | 89012345678 | 999999999 |
I appreciate any assistance that you can provide or let me know if this is not possible.
Thanks - Shelley