英文:
Regex pattern matching using @Pattern annotation in Spring Boot
问题
以下是翻译好的部分:
我想要接受只包含以下字符的标题: \/:*?"<>|
我尝试使用下面的方法,但对我不起作用
@Pattern(regexp = "[^\\/:*?\"<>|]", message = "不合法")
private String title;
我在模式匹配方面还很新,请帮助我找到解决方案...
英文:
I want to accept only those titles which don't contain following characters: \/:*?"<>|
I tried using the below method, but it didn't work for me
@Pattern(regexp = "[^\\/:*?\"<>|]", message = "Not valid")
private String title;
I am new in pattern matching so please help me with the solution...
答案1
得分: 1
一个良好的开端。@Pattern
注解定义了底层字符串应该匹配的模式。
> 被注解的字符序列必须与指定的正则表达式匹配。正则表达式遵循 Java 的正则表达式约定,参见 Pattern。
在你的情况下,你只列出了不应该匹配的字符。你应该定义一个应该匹配的模式。
尝试这个(在 Regex101 上查看演示),注意 +
量词。
^[^\/:*?\"<>|]+$
在 Java 中,请注意转义:
@Pattern(regexp = "^[^\\/:*?\\\"<>|]+$", message = "Not valid")
private String title;
英文:
A good start. The @Pattern
annotation defines the pattern the underlying String should match.
> The annotated CharSequence must match the specified regular expression. The regular expression follows the Java regular expression conventions see Pattern.
In your case, you only list the characters, that should not be matched. You should define a pattern to be matched instead.
Try this one (see Regex101 for a demo) and notice the +
quantifier.
^[^\/:*?\"<>|]+$
In Java, mind the escaping:
@Pattern(regexp = "^[^\\/:*?\\\"<>|]+$", message = "Not valid")
private String title;
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论