I use the MathDox formula editor to create MathML. Now I want to convert the MathML created by MathDox into an expression that I can evaluate later to find the answer.
For eg:
MathML:
<math xmlns='http://www.w3.org/1998/Math/MathML'>
<mrow>
<mn>3</mn>
<mo>+</mo>
<mn>5</mn>
</mrow>
</math>
Want to convert to expression as:
3+5
Now I can use 3 + 5 to get an answer of 8.
I was looking for a javascript or C # solution for this conversion. I tried to do this, but did not get much help. I found a slightly more suitable solution here , but this is a desktop application and commercial. However, I want an open source web application solution for my problem. Any help would be appreciated.
.. , , .