I defined the following grammar using Parse::RecDescent
my $grammar = q{
top : operand equal value { print $item{value} }
operand: /\w+/
equal : /\=/
value : { my $value = extract_quotelike($text) ;$return =$value;}
};
which i wants it to handle the following cases :
X = 2 -> should print 2
X = "2" -> should print 2
x = '2' -> should print 2
but the above grammar provide different results :
for x=2 it fail to parse it
for x="2" -> it print "2"
for x ='2' -> it pring '2'
any idea to change the above grammar to print 2 on all the the 3 above cases , i.e removing the quotes
build_parser.pl
:Adjust the definition of string literals to your needs (but remember to adjust both the rule and
dequote
).Running
build_parser.pl
will generateParser.pm
, which can be used as follows: