up vote 15 down vote favorite
12
share [g+] share [fb]

If I have a string with a valid math expression such as:

String s = "1 + 2 * 7";

Is there a built in library/function in .NET that will parse and evaluate that expression for me and return the result? In this case 15.

link|improve this question

77% accept rate
feedback

11 Answers

up vote 9 down vote accepted

Not a built in one. But there is a pretty comprehensive one here.

link|improve this answer
This library seems to have some bugs. – Philippe Lavoie Mar 4 '11 at 18:34
feedback

For anybody developing in C# on Silverlight here's a pretty neat trick that I've just discovered that allows evaluation of an expression by calling out to the Javascript engine:

double result = (double) HtmlPage.Window.Eval("15 + 35");
link|improve this answer
I wonder if you could reference this elsewhere. Probably not, but it would be cool. – Joel Coehoorn Oct 9 '09 at 15:29
As this evaluates arbitrary Javascript code, you probably want to be sure to sanitize your input and make sure you're not directly displaying the result. (I would think this would be a good way to introduce XSS without realizing it) – Dan Esparza Nov 14 '11 at 17:31
feedback

You could add a reference to Microsoft Script Control Library (COM) and use code like this to evaluate an expression. (Also works for JScript.)

Dim sc As New MSScriptControl.ScriptControl()
sc.Language = "VBScript"
Dim expression As String = "1 + 2 * 7"
Dim result As Double = sc.Eval(expression)

Edit - C# version.

MSScriptControl.ScriptControl sc = new MSScriptControl.ScriptControl();
sc.Language = "VBScript";
string expression = "1 + 2 * 7";
object result = sc.Eval(expression);            
MessageBox.Show(result.ToString());

Edit - The ScriptControl is a COM object. In the "Add reference" dialog of the project select the "COM" tab and scroll down to "Microsoft Script Control 1.0" and select ok.

link|improve this answer
feedback

Have you seen http://ncalc.codeplex.com ?

It's extensible, fast (e.g. has its own cache) enables you to provide custom functions and varaibles at run time by handling EvaluateFunction/EvaluateParameter events. Example expressions it can parse:

Expression e = new Expression("Round(Pow(Pi, 2) + Pow([Pi2], 2) + X, 2)"); 

  e.Parameters["Pi2"] = new Expression("Pi * Pi"); 
  e.Parameters["X"] = 10; 

  e.EvaluateParameter += delegate(string name, ParameterArgs args) 
    { 
      if (name == "Pi") 
      args.Result = 3.14; 
    }; 

  Debug.Assert(117.07 == e.Evaluate()); 

It also handles unicode & many data type natively. It comes with an antler file if you want to change the grammer. There is also a fork which supports MEF to load new functions.

link|improve this answer
feedback

Actually there is kind of a built in one - you can use the XPath namespace! Although it requires that you reformat the string to confirm with XPath notation. I've used a method like this to handle simple expressions:

    public static double Evaluate(string expression)
    {
        var xsltExpression = 
            string.Format("number({0})", 
                new Regex(@"([\+\-\*])").Replace(expression, " ${1} ")
                                        .Replace("/", " div ")
                                        .Replace("%", " mod "));

        return (double)new XPathDocument
            (new StringReader("<r/>"))
                .CreateNavigator()
                .Evaluate(xsltExpression);
    }
link|improve this answer
feedback

You can use The expression evaluator (Eval function in 100% managed .NET)

link|improve this answer
feedback

You can try Calculation Engine at calculator.codeplex.com

link|improve this answer
feedback

I just created a code-only solution to evaluating mathematical expressions in C#. You can see the code at http://www.blackbeltcoder.com/Articles/algorithms/a-c-expression-evaluator.

link|improve this answer
feedback

bcParser.NET is a C# class that can parse and evaluate expressions given as strings at runtime. It has support for user defined variables, constants, functions. It is fast doing only what it needs to do and nothing else unlike a big big scripting engine.

link|improve this answer
feedback

If you need very simple thing you can use the DataTable :-) :

Dim dt As New DataTable
dt.Columns.Add("A", GetType(Integer))
dt.Columns.Add("B", GetType(Integer))
dt.Columns.Add("C", GetType(Integer))
dt.Rows.Add(New Object() {12, 13, DBNull.Value})

Dim boolResult As Boolean = dt.Select("A>B-2").Length > 0

dt.Columns.Add("result", GetType(Integer), "A+B*2+ISNULL(C,0)")
Dim valResult As Object = dt.Rows(0)("result")
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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