Possible Duplicate:
Splitting a simple maths expression with regex
I am giving an expression of the form
(((250* 80)/5-(20+3))*5)* 54
How do I parse the above ensuring that I do not read, for instance, the 250 as 2, and then a 5 and then a 0, but instead as 250.
Note: Expression is valid even if there are no spaces between the values entries(numbers).