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.
|
feedback
|
|
Not a built in one. But there is a pretty comprehensive one here. | |||
|
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:
| |||||
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.)
Edit - C# version.
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. | ||||
|
feedback
|
|
| |||
|
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:
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. | |||
|
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:
| ||||
|
feedback
|
|
You can use The expression evaluator (Eval function in 100% managed .NET) | |||
|
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. | |||
|
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. | |||
|
feedback
|
|
If you need very simple thing you can use the DataTable :-) :
| |||
|
feedback
|