How might I do the exact opposite of what is demonstrated in this thread? Rather than extracting alphabetic characters, I need to extract only the numbers from another column.
Continuing the discussion from Regex to Remove Number from String:
How might I do the exact opposite of what is demonstrated in this thread? Rather than extracting alphabetic characters, I need to extract only the numbers from another column.
Continuing the discussion from Regex to Remove Number from String:
You’ll probably need something like (\d+)
But there are often edge cases with regex. It would be useful if you could share some sample data and desired output.
That worked great! Thank you!