It's easy to implement a "Calculator" to parse a string (e.g., 2 ^ 3 / 2
) and compute the result of operations. But, is there a library already capable of doing this?
views:
221answers:
6
+1
A:
embed ironpython in your app, you can then ask it to evaluate arbitrarily complex strings
i think they even have a sample of the same thing
pm100
2010-02-11 18:02:40
Flee also looks like an option: http://www.codeplex.com/Flee
Ryan Emerle
2010-02-11 18:15:55
+1: I've used this library and it works great
Ryan Emerle
2010-02-11 18:19:08
+2
A:
You are going to need some kind of math parser in order to do that. I've used C# Expression Parser using RPN by DeepEddie before, or you could make your own if the complexity of the expressions you use are of more limited scope.
Don't let it scare you, it is actually quite easy to make.
Dynami Le Savard
2010-02-11 18:06:33
i just mean that the apparent easiness of writing a calculator that parses an input string is deceptive. It's actually a non-trivial problem. If you don't believe me, try it.
Richard
2010-02-11 18:28:47
A:
Check out Reverse Polish notation. It's widely used in modern calculators
dev-null-dweller
2010-02-11 18:10:25
I don't see how this is helpful. The OP is looking for an existing library and not looking to implement his own parser (and thus reinvent the wheel)
Ryan Emerle
2010-02-11 18:20:26
But knowing the name of thing you are looking for can be helpful.
dev-null-dweller
2010-02-11 18:42:55
A:
You can also use the JScript library although its deprecated. Not saying you should, just that you could.
Chris Haas
2010-02-11 18:30:50
A:
I have used this :
using System;
using System.CodeDom.Compiler;
using System.Reflection;
using Microsoft.JScript;
public class JScriptEvaluator
{
public int EvalToInteger(string statement)
{
string s = EvalToString(statement);
return int.Parse(s.ToString());
}
public double EvalToDouble(string statement)
{
string s = EvalToString(statement);
return double.Parse(s);
}
public string EvalToString(string statement)
{
object o = "-1";
try
{
o= EvalToObject(statement);
}
catch { o = "-1"; }
return o.ToString();
}
public object EvalToObject(string statement)
{
return _evaluatorType.InvokeMember(
"Eval",
BindingFlags.InvokeMethod,
null,
_evaluator,
new object[] { statement }
);
}
public JScriptEvaluator()
{
CodeDomProvider provider = new Microsoft.JScript.JScriptCodeProvider();
CompilerParameters parameters;
parameters = new CompilerParameters();
parameters.GenerateInMemory = true;
CompilerResults results;
results = provider.CompileAssemblyFromSource(parameters, _jscriptSource);
Assembly assembly = results.CompiledAssembly;
_evaluatorType = assembly.GetType("Evaluator.Evaluator");
_evaluator = Activator.CreateInstance(_evaluatorType);
}
private object _evaluator = null;
private Type _evaluatorType = null;
private readonly string _jscriptSource =
@"package Evaluator
{
class Evaluator
{
public function Eval(expr : String) : String
{
return eval(expr);
}
}
}";
}
fishhead
2010-02-11 18:38:38