![]() |
|
Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
Re^2: Convert Augmented BNF (ABNF) to Regexp::Grammarsby Anonymous Monk |
on Oct 07, 2016 at 15:09 UTC ( [id://1173486]=note: print w/replies, xml ) | Need Help?? |
I would like to share two bugs and fixes: In "Choice", add $ret = "(?:".$ret.")"; after the join. When combining a Choice with other values, the Choice values need to be separated from the other ones, because precedence for | is low. In "Repetition", there must not be space between the min and max values: $ret .= " (?: ". Value($$v{value} , $dent+1)." ){$$v{min},$$v{max}} ";
In Section
Cool Uses for Perl
|
|