in reply to Parse::RecDescent - Any Way to do a Negation?
This will cause the parse to fail for this branch, be careful that your grammar is not set up so that there are alternate paths to parse the string and yourXXX: YYY | 'something' 'else' | 'a' <reject> | 'this string' <reject> | ZZZ <reject> YYY: 'some string' ZZZ: 'ww' | 'xx' | 'yy' | 'zz'
will fail.$parser->start ($string);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Parse::RecDescent - Any Way to do a Negation?
by Incognito (Pilgrim) on Mar 14, 2002 at 03:46 UTC |