Answers for "convert position of char to integer"

5

char to int

int n = Character.getNumericValue(char);
Posted by: Guest on December-07-2020
4

char to int

char a = 'a';
int ia = (int)a; 
/* note that the int cast is not necessary -- int ia = a would suffice */
Posted by: Guest on March-31-2022

Code answers related to "convert position of char to integer"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language