Is there a string math evaluator in .NET? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:27:50Z http://stackoverflow.com/feeds/question/355062 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/355062/is-there-a-string-math-evaluator-in-net 5 Is there a string math evaluator in .NET? Guy 2008-12-10T04:14:05Z 2008-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#355066 0 Answer by JaredPar for Is there a string math evaluator in .NET? JaredPar 2008-12-10T04:17:05Z 2008-12-10T04:17:05Z <p>No, there is not. </p> http://stackoverflow.com/questions/355062/is-there-a-string-math-evaluator-in-net/355067#355067 5 Answer by strelokstrelok for Is there a string math evaluator in .NET? strelokstrelok 2008-12-10T04:17:13Z 2008-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#355104 2 Answer by Rob Kennedy for Is there a string math evaluator in .NET? Rob Kennedy 2008-12-10T04:44:36Z 2008-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#392347 5 Answer by Guy for Is there a string math evaluator in .NET? Guy 2008-12-24T23:37:28Z 2008-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#392355 2 Answer by coppercoder for Is there a string math evaluator in .NET? coppercoder 2008-12-24T23:48:56Z 2008-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>