Hello all,
I have data that looks like this:
ABC Corp (SAP 100) (20)
DEF (19)
GHI Inc HQ (190)
LMN (US) Holdings (SAP 2000) (1)
I want to get rid of only the last set of numbers in the string and keep the rest, so in the example above, I would want to get rid of:
(20)
(19)
(190)
(1)
I think the way I would do it is via RegEx, but not sure how to set it up. Would appreciate any assistance.
Solved! Go to Solution.
Hi @dataviolet I mocked up a workflow let me know what you think?
Thank you, Rituraj! this is exactly what I was looking for. Could you also please explain to me the syntax that you used in the regex? Does the \s\ stand for text, and the \d stand for digits or something?
\s\(\d+\)
The Regex \s\(\d+\) will search for a space \s a bracket \( then a digit \d the + means one or more, so in this case one or more digits then another bracket \)
Thank you, Joseph, for the detailed breakdown!
User | Count |
---|---|
19 | |
15 | |
13 | |
9 | |
8 |