im trying to create something something similar to this, parsing string to equation with vb now, my problem is is the exponents, can anyone help me with this, or is there any easier way to convert that string to a mathematical equation?
func = (function).Text 'ex: x^4-x^3+x-5
tol = TextBox2.Text <- you can ignore this one
mloop = TextBox3.Text <- you can ignore this one
a = rangeA.Text
b = rangeB.Text
funcA = Replace(func, "x", a)
funcB = Replace(func, "x", b)
my main problem really, converting that string to an immediate usable mathematical equation. thanks!