GithubHelp home page GithubHelp logo

alejolp / simple-expr-eval-java Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 5 KB

Self-contained pure-Java simple expressions parser, implemented using a recursive descent hand-crafted parser

Java 100.00%

simple-expr-eval-java's Introduction

Self-contained pure-Java simple expressions parser, implemented using a recursive descent hand-crafted parser in ~150 lines of code.

Given a string 2 + 3 * 4 it returns 14 and (2 + 3) * 4 gives 20. The parser also has the unary minus - which can be tricky to get for things like 10 / -(-(2))). The parser is interesting because it's done as a recursive descent parser code which is much simpler to understand, follow and debug than the stack parsing algorithm (Shunting-yard algorithm). This project also has a working pom.xml for Spring Boot and JUint 5.

The recursive code follows the EBNF grammar. The EBNF grammar is:

Grammar: (the {...} means 0+ repetition)

expr: term | term { + term } | term { - term }

term: factor | factor { * factor } | factor { / factor } 

factor: - factor | ( expr ) | value

This parser assumes that expressions are always valid. Thus, error detection is done with RuntimeException, NullPointerException or Stack Overflows.

See the SimpleExprParserTest class for tests and examples.

simple-expr-eval-java's People

Contributors

alejolp avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.