I have a string like aaaaaa(bbbbb(ccccccc)dddddd)eeeeeefffff)hhhhh(iiiiii
, how to write a Regular Expression which could get bbbbb(ccccccc)dddddd
.
In example above, there are two pair of brackets, one pair is in another one. i want get all content in the outer.
I have no idea about it.