up vote 11 down vote favorite
8
share [g+] share [fb]

What is the smartest way to design a math parser? what i mean is a function that takes a math string (like: "2 + 3 / 2 + (2 * 5)") and returns the calculated value? I did write one in VB6 ages ago but it ended up being way to bloated and not very portable (or smart for that matter...). General ideas, psuedo code or real code is appreciated.

link|improve this question
you can checkout a java implementation of the shunting yard algorithm here: projects.congrace.de/exp4j – fas Nov 15 '11 at 8:56
feedback

9 Answers

up vote 28 down vote accepted

A pretty good approach would involve two steps. The first step involves converting the expression from infix to postfix (e.g. via Dijkstra's shunting yard) notation. Once that's done, it's pretty trivial to write a postfix evaluator.

link|improve this answer
feedback

I wrote a few blog posts about designing a math parser. There is a general introduction, basic knowledge about grammars, sample implementation written in Ruby and a test suite. Perhaps you will find these materials useful.

link|improve this answer
feedback

You have a couple of approaches. You could generate dynamic code and execute it in order to get the answer without needing to write much code. Just perform a search on runtime generated code in .NET and there are plenty of examples around.

Alternatively you could create an actual parser and generate a little parse tree that is then used to evaluate the expression. Again this is pretty simple for basic expressions. Check out codeplex as I believe they have a math parser on there. Or just look up BNF which will include examples. Any website introducing compiler concepts will include this as a basic example.

Codeplex Expression Evaluator

link|improve this answer
feedback

If you have an "always on" application, just post the math string to google and parse the result. Simple way but not sure if that's what you need - but smart in some way i guess.

link|improve this answer
No, not really smart. But “gets things done”. – Konrad Rudolph Dec 5 '08 at 21:31
1  
That's what i mean, you're smart enough to know how to get things done ;-) – JRoppert Dec 12 '08 at 12:34
feedback

This is a great tutorial series to get started writing your own parser. It's really not that hard.

http://compilers.iecc.com/crenshaw/

link|improve this answer
feedback

The related question Equation (expression) parser with precedence? has some good information on how to get started with this as well.

link|improve this answer
feedback

Assuming your input is an infix expression in string format, you could convert it to postfix and, using a pair of stacks: an operator stack and an operand stack, work the solution from there. You can find general algorithm information at the Wikipedia link.

link|improve this answer
feedback

ANTLR is a very nice LL(*) parser generator. I recommend it highly.

link|improve this answer
feedback

eval(...) works for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown