Is there a string math evaluator in .NET? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T03:27:50Zhttp://stackoverflow.com/feeds/question/355062http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/355062/is-there-a-string-math-evaluator-in-net5Is there a string math evaluator in .NET?Guy2008-12-10T04:14:05Z2008-12-25T15:44:18Z
<p>If I have a string with a valid math expression such as:</p>
<pre><code>String s = "1 + 2 * 7";
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/355062/is-there-a-string-math-evaluator-in-net/355066#3550660Answer by JaredPar for Is there a string math evaluator in .NET?JaredPar2008-12-10T04:17:05Z2008-12-10T04:17:05Z<p>No, there is not. </p>
http://stackoverflow.com/questions/355062/is-there-a-string-math-evaluator-in-net/355067#3550675Answer by strelokstrelok for Is there a string math evaluator in .NET?strelokstrelok2008-12-10T04:17:13Z2008-12-10T04:17:13Z<p>Not a built in one. But there is a pretty comprehensive one <a href="http://weblogs.asp.net/pwelter34/archive/2007/05/05/calculator-net-calculator-that-evaluates-math-expressions.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/355062/is-there-a-string-math-evaluator-in-net/355104#3551042Answer by Rob Kennedy for Is there a string math evaluator in .NET?Rob Kennedy2008-12-10T04:44:36Z2008-12-10T04:44:36Z<p>See also, <a href="http://stackoverflow.com/questions/234217/is-it-possible-to-translate-a-user-entered-mathematical-equation-into-c-code-at">Is it possible to translate a user-entered mathematical equation into C# code at runtime?</a></p>
http://stackoverflow.com/questions/355062/is-there-a-string-math-evaluator-in-net/392347#3923475Answer by Guy for Is there a string math evaluator in .NET?Guy2008-12-24T23:37:28Z2008-12-24T23:37:28Z<p>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:</p>
<pre><code>double result = (double) HtmlPage.Window.Eval("15 + 35");
</code></pre>
http://stackoverflow.com/questions/355062/is-there-a-string-math-evaluator-in-net/392355#3923552Answer by coppercoder for Is there a string math evaluator in .NET?coppercoder2008-12-24T23:48:56Z2008-12-29T03:08:17Z<p>You could add a reference to Microsoft Script Control Library (COM) and use code like this to evaluate an expression. (Also works for JScript.)</p>
<pre><code>Dim sc As New MSScriptControl.ScriptControl()
sc.Language = "VBScript"
Dim expression As String = "1 + 2 * 7"
Dim result As Double = sc.Eval(expression)
</code></pre>
<p><strong>Edit</strong> - C# version.</p>
<pre><code>MSScriptControl.ScriptControl sc = new MSScriptControl.ScriptControl();
sc.Language = "VBScript";
string expression = "1 + 2 * 7";
object result = sc.Eval(expression);
MessageBox.Show(result.ToString());
</code></pre>
<p><strong>Edit</strong> - 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.</p>