in reply to Re: Parse::RecDescent Grammar Fun
in thread Parse::RecDescent Grammar Fun
So far I'm solving the problem by simply forcing punct to be a single character instead: /[^\w\s]/. That way the punct rule doesn't eat up my string before it can run the token test on relevant pieces, since token is checked before punct. What I was kind of hoping for was a way to use a negative lookahead of some sort... or a way to build an extra rule layer that would somehow account for this.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Parse::RecDescent Grammar Fun
by hsmyers (Canon) on Jul 24, 2002 at 22:51 UTC | |
by ichimunki (Priest) on Jul 25, 2002 at 00:52 UTC |