Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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).

share|improve this question
3  
What have you tried? – Don Roby May 18 '12 at 11:38
Define "parse". Are you wanting the result of the calculation or just the individual parts that make up the expression? – Chris Gessler May 18 '12 at 11:40
The individual parts of the expression is what I need. I am able to read character by character but that is not what I want really. I want to be able to read the numbers as they are and then the other characters correctly too. – Kobojunkie May 18 '12 at 11:42
You must continue read character until meet the '(', ')', or any operator (+, -, *, /) before parse them to number – Tu Tran May 18 '12 at 11:45
I am not Kyrogue. I am Kobojunkie :( – Kobojunkie May 18 '12 at 11:47
show 2 more comments

marked as duplicate by Chris Gessler, John Dibling, woodchips, bažmegakapa, AVD May 19 '12 at 6:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 1 down vote accepted

As I understand you need to parse your math expression, so you can try to use something like:

string line = "(((250* 80)/5-(20+3))5) 54";

for (int i = 0; i < line.Length; i++)
{
    //current char is digit, now we should start to collect all digit in this series
    if (char.IsDigit(line[i]))
    {
        StringBuilder builder = new StringBuilder();

        do
        {
            builder.Append(line[i]);
            i++;
        } while (char.IsDigit(line[i]));
        //we find whole number, but current index is next to number
        //for will increment it one more time. We should decrement it
        i--;

        //here we get need number
        string number = builder.ToString();
    }
    else
    {
        //here goes logic for non numbers
    }
}

It takes each char from string and if current char is digit parses whole number.

share|improve this answer

If you plan to use a regex (as you tagged it with regex) the point is to use a greedy multiplicity operator in the regex, either + or *

* is a greedy multiplicity regex operator which matches as many characters as possible and at most 0. So [0-9]* will match an empty string or any positive integer.

+ is a greedy multiplicity regex operator which matches as many characters as possible and at most 1. So [0-9]+ will match any positive integer, but not a empty string.

As simpler but less instructive (as this is homework) is to use the shortcut /d which will simply match positive integers.

share|improve this answer

\d+, for the example given, would match 250, 80, 5, 20, 3, 5 and 54.

share|improve this answer
I need a way to read the string from left to right, so I cannot just get the digits out, I should be able to read the parentheses and operators in the same loop, and in order. – Kobojunkie May 18 '12 at 11:46

Not the answer you're looking for? Browse other questions tagged or ask your own question.