Hi all, I'm trying to extract a specific code from a string, the number of numbers can vary. It should be quite easy, but I'm a bit new with regular expressions, the central idea here is in the Num column, isolate the numeric values of the IR variable.
Solved! Go to Solution.
Hi @Erike
Here it is what you want (that's what I think so).
REGEX_Replace([Address], "\D+(\d+).*", "$1")
It basically captures the first occurrence of digits (1 or more).
Cheers,
Thableaus thanks man!!!!!
User | Count |
---|---|
52 | |
27 | |
25 | |
24 | |
21 |