how to convert a string of number into an intiger code example
Example: convert a string to int in java
String myString = "1234";
int foo = Integer.parseInt(myString);
String myString = "1234";
int foo = Integer.parseInt(myString);