Hey there
I need your help with removing leading and trailing numbers from string.
Input
45 Apple 7 bad 741, 78954, 7896
1 Banana 676 Good 987, 741 963
Output
Apple 7 bad
Banana 676 Good
Do we have any regex experts who can help me? :)
Solved! Go to Solution.
Hey @ignas
In the formula tool try this: REGEX_Replace([Field1], "(\d+\s)(\w+\s\d+\s\w+)(.*)", "$2")
An alternative to @LordNeilLord
REGEX_Replace([Field1], "(^[0-9 ,]+|[0-9 ,]+$)", "")
This just replaces numbers at start and end
User | Count |
---|---|
17 | |
14 | |
13 | |
8 | |
6 |