in reply to Re^2: Parse::RecDescent greedy matches
in thread Parse::RecDescent greedy matches

One more question on RD:

If I have a production like this:

 foo : /tag/ '(' <things in parens> ')'

I'd like to throw away all of the text between nested parens. I tried /.*/ but this overshoots and gobbles up the rest of the line.

Any suggestions on how to approach this? Thanks.