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 see whether a string contains at least a digit or a lowercase or an uppercase.

I have written something like this:

      int combinations = 0;
      string pass = "!!!AAabas1";

      if (pass.matches("[0-9]")) {
          combinations = combinations + 10;
      }

      if (pass.matches("[a-z]")) {
          combinations =combinations + 26;
      }

      if (pass.matches("[A-Z]")) {
          combinations =combinations + 26;
      }

However I don't understand why I cannot get combinations to go to 36. They just remain at 0. What am I doing wrong?

share|improve this question
Give international users some love--utf8 for the win! Also people using punctuation and other special characters should get extra credit. – Seth Robertson Jun 21 '11 at 1:06
@Seth Robertson: I thought Java's internal representation is UTF-16... – phooji Jun 21 '11 at 1:15
@phooji: Yes, but he is only giving credit for 0-9A-Za-z, not including space-/ :-@ [-` {-~ and then the full UTF-8 character-sets. – Seth Robertson Jun 21 '11 at 17:38
@Seth Robertson: I guess my (somewhat pedantic) point is that UTF-8 and UTF-16 are binary representations for the same Unicode character set. – phooji Jun 21 '11 at 17:42
@phooji: Yes, I'm not saying the code will fail, I'm saying whatever "combinations" is supposed to represent isn't being increased due to whatever contribution the punctuation, UTF-8, or UTF-16 characters that might be in the password provide. – Seth Robertson Jun 21 '11 at 17:47

4 Answers

up vote 2 down vote accepted

You could use Pattern instead, I think "matches" method looks for the whole string to match the regular expression.

Try the next code:

    int combinations = 0;
    String pass = "!!AAabas1";
    if (Pattern.compile("[0-9]").matcher(pass).find()) {
        combinations = combinations + 10;
    }

    if (Pattern.compile("[a-z]").matcher(pass).find()) {
        combinations = combinations + 26;
    }

    if (Pattern.compile("[A-Z]").matcher(pass).find()) {
        combinations = combinations + 26;
    }
share|improve this answer
Thank you Hrzio for the code example. It was really helpful. Solved it. – idipous Jun 21 '11 at 1:45

The problem is that matches tries to match the entire input string.

Instead, try creating a Pattern, then from there create a Matcher, and then use the find method.

The Pattern javadoc should help a great deal.

share|improve this answer

Here's my attempt. Note, this uses unicode categories for validation so is non-latin language friendly.

import java.util.regex.Pattern;

public class PasswordValidator {

    public static void main(String[] args) {
        final PasswordValidator passwordValidator = new PasswordValidator();
        for (String password : new String[] { "abc", "abc123", "ABC123", "abc123ABC", "!!!AAabas1", "гшщз",
                "гшщзЧСМИ22" }) {
            System.out.printf("Password '%s' is %s%n", password, passwordValidator.isValidPassword(password) ? "ok"
                    : "INVALID");
        }
    }
    private static final Pattern LOWER_CASE = Pattern.compile("\\p{Lu}");
    private static final Pattern UPPER_CASE = Pattern.compile("\\p{Ll}");
    private static final Pattern DECIMAL_DIGIT = Pattern.compile("\\p{Nd}");

    /**
     * Determine if a password is valid.
     * 
     * <p>
     * A password is considered valid if it contains:
     * <ul>
     * <li>At least one lower-case letter</li>
     * <li>At least one upper-case letter</li>
     * <li>At least one digit</li>
     * </p>
     * 
     * @param password
     *            password to validate
     * @return True if the password is considered valid, otherwise false
     */
    public boolean isValidPassword(final String password) {
        return containsDigit(password) && containsLowerCase(password) && containsUpperCase(password);
    }

    private boolean containsDigit(final String str) {
        return DECIMAL_DIGIT.matcher(str).find();
    }

    private boolean containsUpperCase(final String str) {
        return UPPER_CASE.matcher(str).find();
    }

    private boolean containsLowerCase(final String str) {
        return LOWER_CASE.matcher(str).find();
    }

}

Here's the output:

Password 'abc' is INVALID
Password 'abc123' is INVALID
Password 'ABC123' is INVALID
Password 'abc123ABC' is ok
Password '!!!AAabas1' is ok
Password 'гшщз' is INVALID
Password 'гшщзЧСМИ22' is ok
share|improve this answer
Thank you. Nice touch the unicode inputs. Might actually prove very useful! – idipous Jun 21 '11 at 6:59

While using a regex for this can obviously work, Guava's CharMatcher class might be a bit more appropriate to what you're trying to do:

if (CharMatcher.inRange('0', '9').matchesAnyOf(pass))
  combinations += 10;
if (CharMatcher.inRange('a', 'z').matchesAnyOf(pass))
  combinations += 26;
if (CharMatcher.inRange('A', 'Z').matchesAnyOf(pass))
  combinations += 26;
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.