Delphi:数学表达式
是否可以在编辑框中输入数学总和并让标签生成答案? 例如,如果我输入 (3*4)*2 如何让编辑框将 (3*4)*2 读取为表达式?
谢谢克里莎
Is it possible to type a maths sum into an edit box and for a label to produce an answer?
example if I type (3*4)*2 how can I get the edit box to read (3*4)*2 as an expression?
Thanks
Kerisha
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的,但是使用附加组件,我会推荐您
TEvaluator
,它是JCL(绝地代码库)
。检查这个非常简单的示例(只需将 EditText 与要评估的表达式放在一起)
Yes is possible, but using an additional component, I will recommend you
TEvaluator
which is part of theJCL (Jedi Code library)
.Check this very simple example (just put a EditText with the expression to evaluate)