如何在Android中使用字符串计算数学表达式?

发布于 2025-01-03 12:01:36 字数 295 浏览 1 评论 0原文

您好,我已经创建了字符串格式的数学表达式,

    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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

喜爱纠缠 2025-01-10 12:01:36

有两种方法可以执行此操作。

  • 使用 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.

沉鱼一梦 2025-01-10 12:01:36

有三种方法可以通过前缀、后缀或中缀来解决表达式,您可以实现或者可以检查 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

回首观望 2025-01-10 12:01:36

如果您不想自己推出, 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文