Crates.io Workflow Status

Formula

A parser and evaluator of spreadsheet-like formulas

It's in its early stages, and we are trying to add more functions and features soon.

So far we have the following features:

Installation and usage

Add this library to your project with cargo add formula or add formula = "*" to your Cargo.toml file.

Use it similar to the following code:

```rust use formula::{Formula, Expr, error::Error}; use anyhow::Result;

fn main() -> Result<()> { let formula = Formula::new("UPPER(TRIM(' Hello '))")?; let value = formula.parse().unwrap(); asserteq!(value, Expr::String("HELLO".tostring())); Ok(()) } ```

What we do not support:

Contributing

We would love to have your contribution! Please read our contributing guidelines to get started.

License

This project is licensed under the MIT license. See the LICENSE file for more info.