Here is a handy reference guide to variable conversions. Feel free to add your own.

String to int

String myString = "420";
int myInt = Integer.parseInt(myString);
String to double

String...