We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Case 1: works ok
Expression e = new Expression("2pi+3e"); e.disableImpliedMultiplicationMode(); e.checkSyntax(); mXparser.consolePrintln( e.getErrorMessage());
Result
[mXparser-v.5.0.0] [2pi+3e] checking ... [2pi+3e] (2pi, 0) invalid <TOKEN>. [2pi+3e] (3e, 2) invalid <TOKEN>. [2pi+3e] errors were found.
Case 2: does not work ok
Expression e = new Expression("2(3+4)5"); e.disableImpliedMultiplicationMode(); e.checkSyntax(); mXparser.consolePrintln( e.getErrorMessage());
[mXparser-v.5.0.0] [2(3+4)5] checking ... [2(3+4)5] no errors.
The text was updated successfully, but these errors were encountered:
Fixed: checkSyntax does not works fully correctly with implied multip…
3fa6e9d
…lication expression string, but disabled implied multiplication option #259
Fixed
[mXparser-v.5.0.3] [2(3+4)5] checking ... [2(3+4)5] Multiplication operator missing - try Implied Multiplication Mode. [2(3+4)5] errors were found.
Sorry, something went wrong.
No branches or pull requests
Case 1: works ok
Result
Case 2: does not work ok
Result
The text was updated successfully, but these errors were encountered: