Q:

character to integer

char charValue = '2';
int intValue = Character.getNumericValue(charValue); // 2
7
public class JavaExample{  
   public static void main(String args[]){  
	char ch = '9';
		
	/* Since parseInt() method of Integer class accepts
   	 * String argument only, we must need to convert
	 * the char to String first using the String.valueOf()
	 * method and then we pass the String to the parseInt()
	 * method to convert the char to int
	 */
	int num = Integer.parseInt(String.valueOf(ch));
		
	System.out.println(num);
   }
}
1
        char ch = '3'; 
        int a = ch - '0'; 
        System.out.println("int value: " + a); 
-1

New to Communities?

Join the community