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

I am trying to do a simple Regex in Java and it's failing for some reason. All I want to do is, validate whether a string contains upper case letters and/or numbers. So ABC1, 111 and ABC would be valid but abC1 would not be.

So I tried to do this:

    if (!e.getId().matches("[A-Z0-9]")) {
        throw new ValidationException(validationMessage);
    }

I made sure that e.getId() has ABC1 but it still throws the exception. I know it's something really small and silly but i'm unable to figure it out.

share|improve this question
3  
you're getting some good answers here, but none are explaining what your mistake is. The regex you have will only look to match one character, not every character in a string. – Cameron Apr 16 '12 at 4:31

2 Answers

Use ^[A-Z0-9]+$ as matching pattern. but matches method matches the whole string, [A-Z0-9]+ is enough.

share|improve this answer

You can try with this:

if (!e.getId().matches("^[A-Z0-9]+$")) {
    throw new ValidationException(validationMessage);
}
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.