Hi there.
I have a string like this: -500+1000*10. The answer should be 9500 according to mathematical rules.
I've dome a simple math routine using "top to bottom" routine. For example:
Step 1: -500+1000 = 500
Step 2: 500*10 = 5000
How the heck can I implement the math rules?
Is there a function somewhere I've missed, or?
//Nordlund
I have a string like this: -500+1000*10. The answer should be 9500 according to mathematical rules.
I've dome a simple math routine using "top to bottom" routine. For example:
Step 1: -500+1000 = 500
Step 2: 500*10 = 5000
How the heck can I implement the math rules?
Is there a function somewhere I've missed, or?

//Nordlund