I have a string with the number and I want to convert as an int.
For example :
String as “125685”, the expected output is 125685.
Manohar Changed status to publish October 22, 2021
String stringNumber=”1236547″;
int intNumber=Integer.parseInt(stringNumber); //here we are converting String to Integer
manohar Changed status to publish 51 mins ago
Manohar Changed status to publish October 22, 2021