Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im having a bit of a problem with this code each time i execute it it gives me an error String index out of range: 'n' n - is the no. of characters that is entered in the textbox pertaining to this code... (that is textbox - t2.)it is stuck at that first textbox checking it does not go over to the next as mentioned in the array.

Object c1[] = { t2.getText(), t3.getText(), t4.getText() };    
String b;
String f;
int counter = 0;
int d;
for(int i =0;i<=2;i++)
{
    b = c1[i].toString();
    for(int j=0;j<=b.length();j++)
    {
        d = (int)b.charAt(j);
        if((d<65 || d>90)||(d<97 || d>122))
        {
            counter++;
        }
    }
}

it is basically a validation code that i am trying to do without exceptions and stuff(still in the process of learning :) )

any help would be appreciated thx very much.

share|improve this question
Do I read your code right: You are trying to count the non-characters in the entries of the c1 array? – nfechner Jan 26 '12 at 19:15
no.im trying to validate the input that.that is to check whether the inputted characters are all between A-B or a-b. – user1171616 Jan 27 '12 at 11:04

3 Answers

up vote 2 down vote accepted

Use <, not <= when iterating over the string. With <=, you get an out of bounds error, when j equals the length of the string. Remember that characters in the string are indexed starting from zero.

for(int j = 0; j < b.length(); j++)
share|improve this answer
thx very much it worked. – user1171616 Jan 27 '12 at 11:06

In java string.charAt(string.length()) will be out of bounds since the string is 0 indexed and so the last character is at string.length() - 1.

share|improve this answer
thx for notifying that it works now . – user1171616 Jan 27 '12 at 11:07

Strings are indexed starting at 0. Your second for loop is set to end at b.length, which will always be 1 greater than the highest index for that string., Change it to j < b.length instead.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.