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!

[542 byte] By [syncroa] at [2007-10-3 4:34:12]
# 1
"\\d" is a digit. "\\d+" is one or more digits."\\(\\d+\\)" is one or more digits in parens.
jverda at 2007-7-14 22:37:50 > top of Java-index,Java Essentials,Java Programming...