Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
What have you tried so far? – Greg Hewgill Aug 6 '10 at 9:56
:-) String operand1 = expression.substring(0,expression.indexOf("+")); String operand2 = expression.substring(expression.indexOf("+")+1,expression.length()); – Shah Aug 6 '10 at 10:00
possible duplicate of Equation (expression) parser with precedence? – Greg Hewgill Aug 6 '10 at 10:17
Am I the only one thinking that Scala would be a beautiful answer for this? Of course, it's not Java. – james.garriss Oct 11 '12 at 20:13
@james.garriss Or maybe Haskell and Parsec – Code-Guru May 6 at 0:46

10 Answers

up vote 64 down vote accepted

With JDK1.6, you can use the built-in Javascript engine.

import javax.script.ScriptEngineManager;
import javax.script.ScriptEngine;

public class Test {
  public static void main(String[] args) throws Exception{
    ScriptEngineManager mgr = new ScriptEngineManager();
    ScriptEngine engine = mgr.getEngineByName("JavaScript");
    String foo = "40+2";
    System.out.println(engine.eval(foo));
    } 
}
share|improve this answer
5  
ROTFL;D. I used it and works, but I think running JS engine for that is "quite" over the top :D. – ciembor Sep 7 '11 at 10:23
awesum.. it works great!! found the answer after lot of search... – venomrld Nov 23 '11 at 4:31
Great!!! Just replaced BeanShell libs. Thanks. – marcolopes Apr 22 '12 at 20:18
3  
It seems there's a major problem there; It executes a script, not evaluates an expression. To be clear, engine.eval("8;40+2"), outputs 42 ! If you want an expression parser that also check the syntax, I've just finished one (because I found nothing that suits my needs) : Javaluator. – Jean-Marc Astesana Aug 29 '12 at 12:33

i recently wrote a math expression parser called exp4j that i released under the apache license you can check it out here:

http://www.objecthunter.net/exp4j/

share|improve this answer

How about something like this:

String st = "10+3";
int result;
for(int i=0;i<st.length();i++)
{
  if(st.charAt(i)=='+')
  {
    result=Integer.parseInt(st.substring(0, i))+Integer.parseInt(st.substring(i+1, st.length()));
    System.out.print(result);
  }         
}

and do the similar thing for every other mathematical operator accordingly ..

share|improve this answer

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.

share|improve this answer
@BlueRaja-DannyPflughoeft Overkill compared to what? – EJP Jun 5 '12 at 1:28
@BlueRaja-DannyPflughoeft So you should have mentioned that in your comment. Comparative statements with no referent are meaningless. Personally I would write a little bit of recursive descent every time for expression parsing. – EJP Jun 5 '12 at 7:40
import java.util.*;
StringTokenizer st;
int ans;
public class check{

String str="7 + 5";

StringTokenizer st=new StringTokenizer(str);

int v1=Integer.parseInt(st.nextToken);
String op=st.nextToken;
int v2=Integer.parseInt(st.nextToken);

if(op.equals("+"))
{ ans=v1+v2 }
if(op.equals("-"))
{ ans-v1-v2 }
//.........}
share|improve this answer

You can also try the BeanShell interpreter:

Interpreter interpreter = new Interpreter();
interpreter.eval("result = (7+21*6)/(32-27)");
System.out.println(interpreter.get("result"));
share|improve this answer

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

String math = "1+4";

if (math.split("+").length == 2) {
    //do calculation
} else if (math.split("-").length == 2) {
    //do calculation
} ...

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.

share|improve this answer

It seems like JEP should do the job

share|improve this answer

This will be lots of fun if you're going to include compound expressions such as (3+4)*(1+2). Maybe use recursion?

share|improve this answer

This article points to 3 different approaches, one which is JEXL from Apache and allows for scripts that include references to java objects.

share|improve this answer

protected by rightfold May 6 at 0:37

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.

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