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.