NCatalani / in2po

Simple infix to postfix formula parser

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

in2po

Simple infix to postfix to parse formulas into RPN

EXAMPLES

php in2po.php -f "1 * 100 / (2 + 3 + 1) * 100"

1,100,*,2,3,+,1,+,/,100,*

TO-DO

  • Add custom separator to output expression
  • Add evaluation

About

Simple infix to postfix formula parser

License:MIT License


Languages

Language:PHP 100.0%