How do I parse and evaluate a mathematical expression in a string (e.g. '1+1') without invoking eval(string) to yield its numerical value?
With that example, I want the function to accept '1+1' and return 2.
|
How do I parse and evaluate a mathematical expression in a string (e.g. With that example, I want the function to accept |
||||
|
Somebody has to parse that string. If it's not the interpreter (via So, no, there isn't any (simple) way without |
|||||||||||
|
|
// You can do + or - easily:
More complicated math makes eval more attractive- and certainly simpler to write. |
|||
|
|
I've eventually gone for this solution, which works for summing positive and negative integers (and with a little modification to the regex will work for decimals too):
I'm not sure if it's faster than eval(), but as I have to carry out the operation lots of times I'm far more comfortable runing this script than creating loads of instances of the javascript compiler |
|||||||
|
|
I've recently done this in C# (no Eval() for us...) by evaluating the expression in Reverse Polish Notation (that's the easy bit). The hard part is actually parsing ths string and turning it into Reverse Polish Notation. I used the Shunting Yard algorithm as there's a great example on Wikipedia and pseudocode. I found it really simple to implement both and I'd recommend that if you've not already found a solution or are looking at alternatives. |
|||
|
|
|
You can use this library, which allows you to do stuff like:
|
|||
|
|
|
This is a little function I threw together just now to solve this issue - it builds the expression by analyzing the string one character at a time (it's actually pretty quick though). This will take any mathematical expression (limited to +,-,*,/ operators only) and return the result. It can handle negative values and unlimited number operations as well. The only "to do" left is to make sure it calculates * & / before + & -. Will add that functionality later, but for now this does what I need...
|
|||
|
|
(Function("return 1+1;"))(). – Gumbo Feb 16 '10 at 20:20