I am having trouble converting a String with operators to an Int, for instance:
String str = "8+8*2";
I want to convert it to an Int that will display the number 24.
Is this possible? I must add that it's for an Android application, if it means anything.
Thanks a lot!