vote up 2 vote down star

Possible Duplicate:
Is there a string math evaluator in .NET?

If I have a string like this:

(3+7)*0.1*(2+12)

How do I get the result as though this were a mathematical formula in C#? Is there a simpler way that needing to parse the string out each time?

flag

77% accept rate
Any function you call/write is going to have to parse the string out each time. You'd want something like eval, which I don't think C# has. – nlucaroni Oct 9 at 15:25
Lots of dups, including stackoverflow.com/questions/355062, stackoverflow.com/questions/333737, stackoverflow.com/questions/572796 – Marc Gravell Oct 9 at 15:26

closed as exact duplicate by Marc Gravell Oct 9 at 15:26

3 Answers

vote up 0 vote down

You could use the CSharpCodeProvider class to compile it as C#.

Wrap the user input in something like this:

  public static class TheClass
  {
    public static object Eval()
    {
      return %EXPRESSION%;
    }
  }

If you don't need the math functions, you could reference zero assemblies. Would that be a security hole? If you do need the Math functions, you could reference System.Core.dll and abort if the expression contains a semicolon. You don't need it in math, but you can't do much mischief without it (I think). This is probably not bulletproof, but may be good enough for your application. It's certainly be curious what could be done maliciously with only one semicolon and only a reference to System.Core.dll.

link|flag
vote up 0 vote down

If you mean something like just doing an eval() a la javascript or other dynamic languages, then no.

The reason is that you don't want necessarily want to allow any arbitrary c# code to run there; that would be a huge injection security vulnerability. Just because those other languages allow it doesn't mean it's always a good idea.

This is one good example. How would you restrict the user to mathematical expressions only? Now, you could argue that you could just use a simple regex first- say something that limits the expression to digits, whitespace, and ()+-*!^/.. Maybe. But what if you wanted to allow things like absolute value, trig functions, etc? Where do you draw the line?

That said, I've heard rumblings that an eval -like function may be high on the list for a future version of the language - perhaps that would allow a security context (primitive types only and the Math namespace only, for example).

link|flag
vote up 1 vote down

C# Doesn't have a built-in math parser with this functionality. You'll either have to code your own or use a third-party one.

link|flag

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