gpt4 book ai didi

javascript - Pegjs 保留关键字

转载 作者:行者123 更新时间:2023-11-30 19:24:28 25 4
gpt4 key购买 nike

我得到了支持这个的语法:
AND, OR, NOT, ( and ), ", '

我需要能够解析的东西很少:

  • a1 或 a2
  • a1 a2(同上)
  • a1 和 a2
  • “a1”和“a2”
  • a1 或 a2 不是 a3
  • a1 a2 OR "a3"NOT(a1 AND a2 'a6')

考虑到 a1、a2 等是真实的用户输入,几乎可以包括以下任何内容:

  • 123
  • 特斯拉-S
  • 折纸

我遇到的问题是,其中一个单词没有引号,并且以某个保留关键字开头,例如:

  • 折纸
  • 仙女座

在这种情况下,这个解析器会考虑:

  • 或关键字+ igami 文本
  • 和关键字+ romede文本

这就是我遇到的问题。

我已经尝试了两天各种解决方案,在 stackoverflow(和官方文档)上找到:

(和许多其他人)试图找到具有这些约束的解决方案:

  • 不保证关键字前后有空格,例如“a1 AND(a2 OR a3)”是有效的(“AND”和“(”)之间没有空格,“(a1 AND a2)OR也是如此a3"=> 关键字之前/之后可以有一个空格和/或“("/")"(但是当我尝试这样做时,我打破了括号规则)
  • 只有当一个词是保留部分的一部分时,它才不是一个词:"AND"i/"OR"i/"NOT"i/"("/")"/"'"/'"'/""=> 这些都不是单词,其他都是单词,比如 ando 是单词,而不是关键字。

这是我想出的代码:

content = andOperator

andOperator
= head:orOperator tail:(_ "AND"i _ orOperator)* {
return tail.reduce(function(result, element) {
return {
type: "and",
value: {
left: result,
right: element[3]
}
};
}, head);
}

orOperator
= head:notOperator tail:(_ ("OR"i / _) _ notOperator)* {
return tail.reduce(function(result, element) {
return {
type: "or",
value: {
left: result,
right: element[3]
}
};
}, head);
}

notOperator
= head:parenthesis tail:(_ ("AND"i / "OR" / _) _ "NOT"i _ parenthesis)* {
return tail.reduce(function(result, element) {
var type = (element[1] && element[1].toLowerCase() === "or") ? "or" : "and";
return {
type: type,
value: {
left: result,
right: {
type: "not",
value: element[5]
}
}
};
}, head);
}

parenthesis "Parenthesis"
= _ "(" _ inside:content+ _ ")" _ {
return {
type: "parenthesis",
value: (Array.isArray(inside) && inside.length === 1) ? inside[0] : inside
};
} / text

/*
-----------------------------
TEXT
-----------------------------
*/

text "Text"
= _ inside:(singleQuoteText / doubleQuoteText / noQuoteText)+ _ {
return (Array.isArray(inside) && inside.length === 1) ? inside[0] : inside;
}

singleQuoteText "Single Quote Text"
= "'" text:$([^\']+) "'" {
return {
type: "text",
value: text ? text.trim(): text
};
}

doubleQuoteText "Double Quote Text"
= '"' text:$([^\"]+) '"' {
return {
type: "text",
value: text ? text.trim(): text
};
}

noQuoteText "No Quote Text"
= text:$(!reserved .)+ {
return {
type: "text",
value: text ? text.trim(): text
};
}

reserved "List of keyword this grammar allow"
= ("AND"i / "OR"i / "NOT"i / "(" / ")" / "'" / '"' / " ")

/*
-----------------------------
WHITESPACE PARSING
-----------------------------
*/
__ "Mandatory Whitespace"
= $(whitespace+)

_ "Optional Whitespace"
= __?

whitespace
= [\u0009\u000B\u000C\u0020\u00A0\uFEFF\u1680\u180E\u2000-\u200A\u202F\u205F\u3000] / $('\r\n' / '\n')

问题示例:你好折纸

给出当前语法:

{
"type": "or",
"value": {
"left": {
"type": "text",
"value": "hello"
},
"right": {
"type": "text",
"value": "igami"
}
}
}

应该给出(它认为折纸是一个完整的世界而不是 or + igami):

{
"type": "or",
"value": {
"left": {
"type": "text",
"value": "hello"
},
"right": {
"type": "text",
"value": "origami"
}
}
}

Origami 在当前解析器中被拆分为 OR + igami,而它应该考虑整个单词 origami...

最佳答案

使用谓词,您可以包含匹配除关键字之外的所有词的规则,如下所示:

{

var keywords = ["and", "or"];

}

Expression =
word:$(Word) { return { word: word } } /
keyword:$(Keyword) { return { keyword: keyword } }

// Word will match everything except "and" and "or",
// including words like "origami" and "andromede"
Word = word:$([a-zA-Z]+) &{ return !keywords.includes(word) }

Keyword = [a-zA-Z]+

在上面的语法中,Word 将匹配除“or”和“and”之外的所有单词。如果单词(然后是 整个 单词)是这些关键字之一,则 Keyword 规则将改为匹配。

因此,给定输入,您将得到以下输出:

{
keyword: "and"
}

但是给定输入 andromede,您将得到以下输出:

{
word: "andromede"
}

关于javascript - Pegjs 保留关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57062299/

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