gpt4 book ai didi

perl - Parse::RecDescent 语法没有按预期工作

转载 作者:行者123 更新时间:2023-12-04 04:24:02 24 4
gpt4 key购买 nike

我设法开始工作的是 STRING、PARAMS、VARIABLE 和 FUNCNAMEFUNCTION好像有问题,就是看不出来。

use strict;
use Parse::RecDescent;

$::RD_ERRORS = 1; # Make sure the parser dies when it encounters an error
$::RD_WARN = 1; # Enable warnings. This will warn on unused rules &c.
$::RD_HINT = 1; # Give out hints to help fix problems.

my $grammar = <<'_GRAMMAR_';
SCRIPT : INSTRUCTION(s /;/)

INSTRUCTION: FUNCTION | VARIABLE "=" FUNCTION

FUNCTION : FUNCNAME "[" PARAMETERS "]"

FUNCNAME : "print" | "add2" | "save" # ok

PARAMETERS : STRING | STRING /\s*\,\s*/ PARAMETERS # ok

VARIABLE : /\w[A-Za-z-0-9]{0,10}/i # ok

STRING : /'(?:[^'\\]|\\.)*'/ # ok
_GRAMMAR_
my $parser2 = Parse::RecDescent->new($grammar);
#i test every rule here
print "STRING OK\n" if $parser2->STRING("'asd'");
print "PARAMS OK\n" if $parser2->PARAMETERS("'asd','XCV','vfgdg'");
print "SCRIPT OK\n" if $parser2->SCRIPT(q(print['hola','asd'];save['hello'];));
print "VARIABLE OK \n" if $parser2->VARIABLE("a1");
print "FUNCTION OK\n" if $parser2->FUNCTION(q(print['hola','asd']));
print "FUNCNAME OK\n" if $parser2->FUNCNAME(q(print));
print "INSTRUCTION OK\n" if $parser2->FUNCTION(q(a0=print['hola','asd'];));

有什么帮助吗?顺便说一句,我的目标是:

variable=functioname['param1','param2','paramN'];
function2['param1'];
etc etc

最佳答案

这对我有用(特别是,查看 [A-Za-z0-9]):

my $grammar = <<'_GRAMMAR_';
SCRIPT : INSTRUCTION(s /;/) /\Z/

INSTRUCTION: VARIABLE EQ FUNCTION | FUNCTION

FUNCTION : FUNCNAME '[' PARAMETERS ']'

FUNCNAME : "print" | "add2" | "save"

PARAMETERS : STRING(s /,/)

VARIABLE : /(\w[A-Za-z0-9]{0,10})/i

EQ: '='

STRING : /'(?:[^'\\]|\\.)*'/ # ok
_GRAMMAR_

关于perl - Parse::RecDescent 语法没有按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11598761/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com