I have a large array of strings which I need to edit according to some rules. One of these rules is that a string should not have blocks with parenthesis. For example-
"(Speaking) (Laughing) Get out of here" # Desired output - "Get out of here"
or
"(Dancing)Where have you been" # Desired output - "Where have you been"
Please help me to do this.