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

Valid: abc abc11

Invalid: 11 a-b a&&b a << b a&b a->b

share|improve this question
Why not two regexes and then if(containsAlphabet && containsAlphanumeric)? – Thilo Oct 11 '10 at 5:59
2  
@Thilo that would not satisfy his homework assignment :) – typoknig Oct 11 '10 at 6:14
Seriously, what's the point of teachers giving homework of this type when surely they know that people will ask on forums. Are they testing student's Googling ability? – Marko Oct 11 '10 at 7:01
1  
@Marko - homework exercises are designed for the benefit of those who do them, not for those who find some way not to do them. Someone who cheats is only really cheating themselves. ("Google it" won't work in an exam.) – Stephen C Oct 11 '10 at 7:23
@Stephen - Touche. I wish students understood this too. 60% are at University to satisfy their parents and have a 'degree'. – Marko Oct 11 '10 at 7:24

4 Answers

One regexp:

/^[a-zA-Z\d]*[a-zA-Z]+[a-zA-Z\d]*^/
share|improve this answer
That would accept "_" – Thilo Oct 11 '10 at 6:06
Tnx, i corrected regexp – xt.and.r Oct 11 '10 at 6:24

This regexp should do the job: /^[a-zA-Z\d]*[a-zA-Z][a-zA-Z\d]*^/

Mind you, this regex is potentially going to a significant amount of backtracking; it will be O(N^2) in the worst case. Making the first repetition lazy instead of eager will make the regex faster ... if it is going to match. The way to speed up the no-match case is to use two regexes.

Or better still, don't use regexes at all and code match in simple Java:

public boolean matchSymbol (String input) {
    boolean seenLetter = false;
    final int len = input.length();
    for (int i = 0; i < len; i++) {
        char ch = input.charAt(i);
        if (ch >= 'a' && ch <= 'z' || ch >= 'A' && ch <= 'Z') {
            seenLetter = true;
        } else if (ch < '0' || ch > '9') {
            return false;
        }
    }
    return seenLetter;
}

For an N character String, this succeeds in N loop iterations or fails in (typically) less than N iterations.

share|improve this answer

You need two regexes. One that checks it's only alphanumeric /[a-zA-Z0-9]+/ and one that checks it's not just digits /^[^0-9]+$/ Only check the second one if the first one passes.

share|improve this answer
"^[0-9]*+[A-Za-z][A-Za-z0-9]*+$"
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.