> Wonderful works! And I would like to know how to handle parens in > 'infix_expression', like: > > (a+b)/(a-b)
That should be pretty obvious.. what did you try and how did it not work?
The infix parser parses streams like this:
A B A B A B A
where A is your 'element' and B is your operation. All you have to do is
monkey around with the definition of A...
k
