Expand description
nom-based parser for Excel formula strings.
The formula string does NOT include the leading = sign.
Operator precedence (lowest to highest):
- Comparison (=, <>, <, <=, >, >=)
- Concatenation (&)
- Addition / Subtraction (+, -)
- Multiplication / Division (*, /)
- Exponentiation (^)
- Unary (+, -, %)
- Primary (literals, references, functions, parens)
Functionsยง
- parse_
formula - Parse an Excel formula string into an AST expression.