Skip to content
Advertisement

Why i’m getting a error using ScriptEngineManager by passing a string formula?

I’m using Java’s ScriptEngineManager to run some math formulas that will arrive in a string value.

But I’m receiving the following error and I can’t find the reason.

JavaScript

When I run the adobe code by using the string form1 returns the result without problem. But when I use the form2 I’m getting the following error:

JavaScript

I don’t have any clue by what could be the reason of this error.

Advertisement

Answer

The main issue is that the minus sign in the String is actually the Unicode EN Dash, so it cannot be interpreted properly; replace it with the actual minus symbol (-) to fix the issue.

Another problem is that ^ is actually the bitwise XOR operator, which does not perform exponentiation. You would need to replace that with **.

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement