Skip to content
Advertisement

check if char[] contains only one letter and one int

I have no idea how to check if char[] contains only one letter (a or b) on the first position and only one int (0-8) on the second position. for example a2, b2

I have some this, but I do not know, what should be instead of digital +=1;

JavaScript

Advertisement

Answer

First, I would test for null and that there are two characters in the String. Then you can use a simple boolean check to test if first is a or b and the second is between 0 and 8 inclusive. Like,

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement