问题
I have a variable name in a bean. I want to add @Pattern
validation to accept only alphanumeric.
Currently, I have this one.
@NotNull
@Pattern(regexp = "{A-Za-z0-9}*")
String name;
But the error is Invalid regular expression.
I tried [A-Za-z0-9]
. But this is not working either. No errors though. It shows any valid input as failed.
回答1:
Do you try this pattern: ^[A-Za-z0-9]*$
or ^[A-Za-z0-9]+$
to avoid empty results.
If you want to check that a string contains only specific characters, you must add anchors (^
for beginning of the string, $
for end of the string) to be sure that your pattern matches all the string.
Curly brackets are only to write a quantity, example: i want two a
:a{2}
You can't put letters inside. The only cases you can meet letters inside curly brackets are when you use unicode character classes: \p{L}
, \p{Greek}
, \p{Arabian}
, ...
回答2:
In addition, you may use a character class, which can be used in curly braces, namely Alnum. For example, for an alphanumeric character having length between 1 and 32 characters inclusive:
@Pattern(regexp = "^[\\p{Alnum}]{1,32}$")
see https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html
来源:https://stackoverflow.com/questions/17481029/pattern-for-alphanumeric-string-bean-validation