Hello, i have a general java question: There is the possibility to convert a number (like int a = 126) to a string with:
String x=""+a. That would be x="126".
But is there a way to turn it back, so that i have a string variable and "convert" it to an (for example) int type (as long as the string is a number, I dont even want to try to convert sth like "qwert123", but maybe String x="621" to int a=621)

