I have a string which contains word “Limited” or “Ltd”. My requirement is to remove any text in brackets "( )" after the same words “Limited” or “Ltd” in the given input string.
For example "Abcd Ltd (North)" will become "Abcd Ltd" but “Abc (North)” will remain “Abc (North)”
Also "ABCD Ltd test (North)" will remain same as it is.
I am trying to find out regular expression in c#, which can solve the above issue?
Any help is appreciated.