georgeok
georgeok

Reputation: 5726

Android scientific calculator

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

Answers (1)

kgiannakakis
kgiannakakis

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

Related Questions