I have a scenario where I have to remove certain characters from a price string using C#.
I\'m looking for a regular expression to remove these characters or somethi
Why use a RegEx when a simple replace will do?
string clean = "3,950,000 ( Ex. TAX )".Replace(" ( Ex. TAX )", string.Empty);