Regex question
Hi all
How can I express the following in regular expressions:
Match everything enclosed in parentheses which is an integer.
My String is "Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)" and I
want to replace the matching sequence with "".
I'm guessing that I have to escape the parentheses with backslashes and then use the * wildcard to match any pattern within them (but then it will remove non integers too!). But I haven't quite figured out how to make it work yet. Any advice?
Thanks!

