Here is my @Pattern annotation. I want to disallow digits that repeat 9 times. What have I done wrong?

@Pattern(regexp="(?!.*\\d{9})")

These would be invalid strings:

111111111
222222222

These would be valid:

111111112
222222221
123456789

Only strings with a length of 9 will be valid but this is not needed as part of the regular expression since that will be controlled by other annotations.

link|improve this question

2  
What does disallow mean to you? Delete? Stop execution? Call the cops? – josh.trow May 12 '11 at 17:40
So do you want characters that are < 9 recurrences or > 9 recurrences? – Josh M. May 12 '11 at 17:41
This has nothing to do with spring. – abalogh May 12 '11 at 17:42
Provide us with example strings - both positive and negative. Is 123456789 supposed to be matched? How about abcdef (it's not a sequence of 9 digits, but I guess you don't want that to match either) – Grzegorz Oledzki May 12 '11 at 17:48
The @Pattern annotation takes a regexp argument that the variable which the annotation is applied to must match or possibly not match depending on your regexp argument value. The jsr 303 framework sets an error message based on the result of the validation performed based on the @Pattern argument. – coder May 12 '11 at 17:48
feedback

1 Answer

up vote 3 down vote accepted

Edited following the comments

I think you meant you don't want the same digit repeating 9 times. To do that, you need to capture one digit, and refer to that and see if it repeats for 8 more times.

@Pattern(regexp="^(?!(\\d)\\1{8})")

If you simply use \\d{9}, it will mean repeatition of any digits.

Note also that you don't need .*. Regex will decide where to start the match on its own.

link|improve this answer
1  
This is close, but you need to add a ^ anchor to the beginning, (i.e. "^(?!(\\d)\\1{8})"), otherwise, the regex will successfully, (and erroneously) match at the second char position. (depending on which regex matching function is being employed.) Otherwise good answer. – ridgerunner May 12 '11 at 18:15
2  
@ridgerunner: How? coder stated that strings are guaranteed to be 9 digits by the time they get to this point. Seems to me that would eliminate the opportunity for it to match starting at a second character or further. – josh.trow May 12 '11 at 18:22
@ridgerunner and @josh.trow Thanks. You both show the point. – sawa May 12 '11 at 18:25
2  
It may be that the pattern is used to match the whole string anyway; this depends on the implementation of the validator. If it is not matched as a whole, then anchoring the pattern at the start (using the ^ anchor) might improve performance for strings not matching the pattern: Without the anchor, the regex engine will proceed to match the \d against one character after the other, until the end of the string. – Christian Semrau May 12 '11 at 19:26
All comments by @ridgerunner, @josh.trow, and @Christian are helpful. I actually didn't have that deep though pointed out by either of the three comments. – sawa May 12 '11 at 19:34
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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