Well I'm recently started to learn java coding, and there are some bumps that needs to be resolved.
I just have encountered this issue that when converting a string with special parameters inside (e.g "3^5+7*10" or "(1/2)"). in such occasions, the Integer.parseInt returns an error saying that the number is not supported. And the actual code is:
int i = Integer.parseInt("5*3^2+3^2");
Thanks in advance :)
Update: Is there another library that I could use in order to do the conversion, AFAIK this used to be very easy in C#.