I'm trying to read a string's character to get the numeric value. String cardNumber = in.next();
int currentIndex = cardNumber.length() - 1;
while (currentIndex >= 0)
{
int smallValue;
smallValue = Character.getNumericValue(currentIndex);
when smallValue runs, its not giving me the number. just a -1