how to parse int in java code example
Example 1: java convert String to int
int i = Integer.parseInt(myString);
Example 2: parseints(str) java
int decimalExample = Integer.parseInt("20");
int signedPositiveExample = Integer.parseInt("+20");
int signedNegativeExample = Integer.parseInt("-20");
int radixExample = Integer.parseInt("20",16);
int stringExample = Integer.parseInt("geeks",29);
System.out.println(decimalExample);
System.out.println(signedPositiveExample);
System.out.println(signedNegativeExample);
System.out.println(radixExample);
System.out.println(stringExample);
Output:
20
20
-20
32
11670324
Example 3: parse string to int java
String number = "10";
int result = Integer.parseInt(number);
System.out.println(result);