I have a string which contains words with parentheses. I need to remove the whole word from the string.
For example: for the input, "car wheels_(four) klaxon"
the result should be, "car klaxon"
.
Can someone give me an example that would accomplish this?