a AST parser for formula & formula function
这是一个严格验证数学公式的分析器.它帮助你进行词法分析,转化一个数学公式为令牌(tokens)
流,还可以把令牌流进行语法分析,生成一个节点树.更多请参看用法
This is a strict parser for formula. It will help you to parse a formula with Lexical Analysis
& Syntactic Analysis
. It can translate a formula string to tokens, and translate tokens to node tree. More infomation please check Usage.
npm i func-formula-parser --save-dev
import FuncFormulaParser from 'func-formula-parser';
// or const FuncFormulaParser = require('func-formula-parser').default;
const formulaParser = new FuncFormulaParser({}); // option See API
const tokenList = formulaParser.setFormula('1+1'); // tokenList === formulaParser.getTokens();
console.log(tokenList);
const nodeTree = formulaParser.parseNode(); // nodeTree === formulaParser.getNodeTree();
console.log(nodeTree);
// get Error
try {
formulaParser.setFormula('1+');
}catch(e) {
console.error(e);
// Print:
// SyntaxError: Token parse Error(2:0): ""
// Illegal end symbol
}
生成一个分析器实例 Create a parse instance
option
: objectautoParseNode
: boolean 是否自动解析语法树节点
设置公式
formula
: string 公式支持多行形式,Formula support mulit line.
// Single line
formulaParser.setFormula('1+1');
// Mulit line
formulaParser.setFormula(`
IF(a>b,
a,
b
)
`);
解析节点,如果autoParseNode
为true
时,则会在setFormula
时自动执行.
If autoParseNode
is true
, it will autorun in setFormula
返回令牌列表 Return current tokens
返回节点树 Return current node tree
npm run build
npm run test:unit
npm run test
npm run test:benchmark