Hello all,
I tried to code a script, that parses ^ (or any other symbol) as power. E.g. "2x" should become "pow(2,x)". This wouldn't be so difficult, but it should also work with nested functions, like change "2(1+x)(x-1)+1" into "2pow((1+x),(x-1))+1" , "xyz" into "pow(x,pow(y,z))", "sin(x)cos(x)" into "pow(sin(x),cos(x))" and so on, even highly complex nested funstions. This took me several hours until I realized I couldn't make it.
So does anybody know a free script that can exactly do this?
Thank you very much!