I have a string which consists of numbers separated by either addition, subtraction, multiplication, division signs etc, eg:
"1+2*3"="7"
.
The maximum number of signs can be two. I want to compute this string as an arithmetic operation. How can I do this? My current thinking is to split this string into a list then calculate the result using the normal order of arithmetic operation.