quote:
Originally posted by Mattike
Oh damn...
But what about decimal numbers like 1.5? Those can't be processed through a postfix expressions, or am I wrong?
1.5 is just a number like everything else... so yes, it can be parsed.
In fact, you can parse whatever you want including functions you invent yourself.
eg:
Infix: (1.5 + 98) * 2 ^ blah(4)
Postfix: 1.5 98 + 2 4 blah ^ *
PS: I updated my previous post with some links which explain everything in detailed way. It is a very good base to start of with.
PSS: why don't you work further on your CountDown Live script? some stuff todo there