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.
123456789supposed to be matched? How aboutabcdef(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