开发者

Regex validation - show offending character(s). javax.validation

There's regex validation in JSR-303 (javax.validation). For example:

@Pattern(regexp="[\w_\\.]+")
private String username;

The default message shown when the value is not valid (does not match the regex) is something like "Must match {regex}". But users don't understand regex, so it is irrelevant to show it to them. An option is to just show "The username contains illegal characters", and it will probably be fine in most cases. But it w开发者_Python百科ill be good to show which character is wrong.

This cannot be directly achieved with regex - it either matches or not. You have to either define other patterns that miss some of the components, or try dropping characters from the string until it matches, and then show these characters to the user.

That was in general. Another question is how to achieve this with javax.validation.

So, to summarize the question:

How to display the offending characters with javax.validation, so that the message looks like "The characters ?, * and $ are illegal"


I would go with a negated version of your validation pattern. So your pattern would just be:

[^\w_\\.]

On validation failure, match that against the input string and output the results to the user.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜