I got a problem, but I don't know if it is possible to resolve it...
I have a string, let's say
CString str = "4*2.5";
and I'd like to do a thing like this
double result = unknownFunction(str);
obtaining result = 10;
Is it possible to do it?
(Obviously, if so, how? ) )
Don't matter if there's not just a function, any hint will be appreciated.
Thanks to you all
I have a string, let's say
CString str = "4*2.5";
and I'd like to do a thing like this
double result = unknownFunction(str);
obtaining result = 10;
Is it possible to do it?
(Obviously, if so, how? ) )
Don't matter if there's not just a function, any hint will be appreciated.
Thanks to you all