RE: Parse::RecDescent and catenating (no skip match)

[email protected] ("Sean O'Rourke") Tue, 23 Jul 2002 08:49:59 -0700 (PDT)
Newsgroups perl.recdescent
Message-ID <[email protected]>
How about

$skip = qr/,?/;

As long as you don't have to worry about one field's matching a prefix of
another (which seems unlikely since the commas are optional), this seems
like it should do the trick.

/s