Reputation: 5726
I am new so please be patient with me. What I want is to build an advanced calculator for android. I need to convert a string variable (ex. "3+5^8") into a math equation.. I am looking for something like the eval() function for excel.
Upvotes: 0
Views: 588
Reputation: 104188
What you need is a math parser. You can try to port an existing one to Android or create your own using ANTLR.
Upvotes: 2