+ 1
How to allow user to input only number and character (A-F) in java? And how to match number to characters in java?
It is number conversion,Hexadecimal to binary,octal, and decimal. How to fix it in java?
1 Resposta
0
you can try extracting every character in the string which you are inputting and then compare them with ASCII codes. ASCII codes are numbers which correspond to numbers letters and special characters.
A-Z is 65 to 90
a-z is 97-122
0-9 is 48-57