I am trying to write a Java routine to evaluate simple math expressions from Strings. Example strings:
"5+3" or "10-40" or "10*3"
I want to avoid a lot of if-then-else statements. How can I do this?
|
|
With JDK1.6, you can use the built-in Javascript engine.
|
|||||||||||||
|
|
i recently wrote a math expression parser called exp4j that i released under the apache license you can check it out here: |
||||
|
|
|
How about something like this:
and do the similar thing for every other mathematical operator accordingly .. |
||||
|
|
|
The correct way to solve this is with a lexer and a parser. You can write simple versions of these yourself, or those pages also have links to Java lexers and parsers. Creating a recursive descent parser is a really good learning exercise. |
|||||||
|
|
|||
|
|
|
You can also try the BeanShell interpreter:
|
|||
|
|
|
I think what ever way you do this it's going to involve a lot of conditional statements. But for single operations like in your examples you could limit it to 4 if statements with something like
It gets a whole lot more complicated when you want to deal with multiple operations like "4+5*6". If you are trying to build a calculator then I'd surgest passing each section of the calculation separatly (each number or operator) rather than as a single string. |
|||
|
|
|
This will be lots of fun if you're going to include compound expressions such as (3+4)*(1+2). Maybe use recursion? |
|||
|
|
|
This article points to 3 different approaches, one which is JEXL from Apache and allows for scripts that include references to java objects. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.