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

121263263 - Valid
111111112 - Valid
share|improve this question
Is this homework? – finnw Nov 6 '09 at 11:52
No.. It is not.. – Milli Nov 6 '09 at 11:55
2  
Then why the "using regex" restriction? – CPerkins Nov 6 '09 at 11:55
Is it now a social networking site that you gotta make a pep talk? – Milli Nov 6 '09 at 12:07
As much as I love regex, it's not the tool for the job here. – Stefan Kendall Nov 7 '09 at 0:26

3 Answers

up vote 11 down vote accepted
^([0-9])(?!\1+$)[0-9]+$

should work. It needs a string of at least two digits to match successfully.

Explanation:

  1. Match a digit and capture it into backreference #1: ([0-9])

  2. Assert that it's impossible to match a string of any length (>1) of the same digit that was just matched, followed by the end of the string: (?!\1+$)

  3. Then match any string of digits until the end of the string: [0-9]+$

EDIT: Of course, in Java you need to escape the backslash inside a string ("\\").

share|improve this answer
Indeed it does work. +1 – Jonik Nov 6 '09 at 11:59
"11".matches("^([0-9])(?!\1+$)[0-9]+$"); This returns true! – Milli Nov 6 '09 at 12:03
"assumes a string of at least two digits" -> "assumes a string with length of 2 or more"? I mean the regex seems to work correctly for all such strings; e.g. "A1" -> false. – Jonik Nov 6 '09 at 12:04
@Milli. Curious - on my machine "11".matches("^([0-9])(?!\\1+$)[0-9]+$") is false! Java 1.6.0_15. – Jonik Nov 6 '09 at 12:07
I used one '\' in the regex as how Tim specified. I should have noticed that. Thanks a bunch Jonik. And a warm thanks to Tim. – Milli Nov 6 '09 at 12:12
show 2 more comments
  1. take a [0-9] regex and throw away strings that not only contain digits.
  2. take the first character, and use it as a regex [C]+ to see if the string contains any other digits.
share|improve this answer
For production code I might well prefer this approach: do the check in separate steps using very simple regular expressions. This way the code would be more readily understood by other people on the team. So +1 for this too. – Jonik Nov 6 '09 at 13:14

Building on Tim's answer, you eliminate the requirement of "at least two digits" by adding an or clause.

^([0-9])(?!\1+$)[0-9]+$|^[0-9]$

For example:

String regex = "^([0-9])(?!\\1+$)[0-9]+$|^[0-9]$";
boolean a = "12".matches(regex);
System.out.println("a: " + a);
boolean b = "11".matches(regex);
System.out.println("b: " + b);
boolean c = "1".matches(regex);
System.out.println("c: " + c);

returns

a: true
b: false
c: true
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.