如何在Android中使用字符串计算数学表达式?
您好,我已经创建了字符串格式的数学表达式,
String strFormula = "((2*(" + a + "+(2*" + st + "))+2*(" + b + "+(2*" + st + ")))*" + l + "/1000000)*" + amount;
strFormula = CommonFunctions.FormatFormulaWithGermanStandard(strFormula);
我想评估这个数学表达式。
请向我推荐可用的链接或示例代码。
Hi I have create mathematical expression as string format
String strFormula = "((2*(" + a + "+(2*" + st + "))+2*(" + b + "+(2*" + st + ")))*" + l + "/1000000)*" + amount;
strFormula = CommonFunctions.FormatFormulaWithGermanStandard(strFormula);
I want to evaluate this mathematical expression .
Please suggest me usable link or sample code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有两种方法可以执行此操作。
使用 SQL lite(内置)数据库执行带有表达式的 select 语句
使用 google,使用表达式发出 google 请求它将返回一个响应。
there are 2 ways you can execute this.
use SQL lite (inbuilt) db to execute a select statement with the expression
use google, make a google request with the expression and it will return a response.
有三种方法可以通过前缀、后缀或中缀来解决表达式,您可以实现或者可以检查 java 代码以获取这些方法之一来解决您的表达式,如下是使用后缀方法解决表达式的代码的链接
http://resume.technoplaza.net/java/postfix-calc.php
通过谷歌搜索您可以找到更多有用的链接
There are three ways to solve an expression which are by prefix, postfix or infix you can implement or can check java code for one of these methods to solve your expression like here is link below of code for solving an expression using postfix method
http://resume.technoplaza.net/java/postfix-calc.php
by googling you can find more useful links
如果您不想自己推出, JEXL 应该能够处理这种表达式,而且它相对较轻。
If you don't want to roll your own, JEXL should be able to handle that kind of expression, and it's relatively lightweight.