how to convert a number from string to int code example
Example 1: java string to int
int result = Integer.parseInt("500");
System.out.println(result) // prints 500 as int
Example 2: string to int java
int result = Integer.parseInt(number);
Example 3: java string from int
String.valueOf(i)