Is there a way to calculate a formula stored in a string in JavaScript without using eval?
Normally I would do something like
var apa = "12/5*9+9.4*2";
alert(eval(apa));
So, does anyone know about alternatives to eval?
|
Is there a way to calculate a formula stored in a string in JavaScript without using Normally I would do something like
So, does anyone know about alternatives to |
||||
|
This the exactly the place where you should be using eval, else you will have to loop through the string and generate the numbers. You will have to use isNaN method to do it. |
|||||||||
|
|
Eval was built for conditions like this. If you wanted another method, you'd have to use a pure Javascript implementation of the exact thing eval is going to do.
Here's a quick basic example I came up with (updated (2011-06-26): cleaner w/ input boxes). Note:
|
||||
|
If you don't want to use eval you will have to use an existing expression evaluator library. http://silentmatt.com/javascript-expression-evaluator/ http://www.codeproject.com/KB/scripting/jsexpressioneval.aspx You can also roll one of your own :) |
|||
|
|
|
There's nothing wrong with eval, especially for cases like this. You can sanitize the string with a regex first to be safe:
|
|||
|
|
You can't, at most you could do something retort like parsing the numbers and then separating the operations with a switch, and making them. Other than that, I'd use eval in this case. That would be something like (a real implementation will be somewhat more complex, specially if you consider the use of parenthesis, but you get the idea)
Still I think the best choice you can make is to use eval, given that you're able to trust the source of the string. |
||||
|
|
evalas long as you can be sure about what the string you are evaluating contains. – Felix Kling Jun 25 '11 at 17:05