vote up 5 vote down star
1

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.

flag

11 Answers

vote up 16 vote down check

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

link|flag
vote up 2 vote down

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|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
No, not really smart. But “gets things done”. – Konrad Rudolph Dec 5 '08 at 21:31
That's what i mean, you're smart enough to know how to get things done ;-) – JRoppert Dec 12 '08 at 12:34
vote up 1 vote down

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|flag
vote up 1 vote down

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

-Adam

link|flag
vote up 0 vote down

There's a few tutorials on JavaCC that use a calculator as an example on how to use JavaCC to generate a parser, like this tutorial or the one included in the JavaCC distribution by default. Ofcourse this is java based, but there's quite some EBNF based parser generators out there.

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

I have written an infix to postfix algorithm some years ago. I put it on my blog tonight so you can have a look at it.

It is not the same as Dijkstra's. He uses a stack, I only use an array. I think its quite neat. Please have a look.

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

eval(...) works for me.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.