in reply to Re^2: Parse::RecDescent greedy matches
in thread Parse::RecDescent greedy matches
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.
|
|---|