in reply to Parse::RecDescent - specifying dynamic subrule repetition
Perhaps you want to parse string-within-a-string into a nested data structure, which would justify a parser. If that's the case, the String rule should have a recursive alternate. If you just want the outer string, copying literally any inner string without interpretation, then you need a dynamic rule that uses $item{Count} to eat exactly that many characters.
|
|---|