英文:
bean-validation @Pattern the first digit is '1'
问题
如何在以下字段中使用 bean-validation 的 @Pattern 进行验证,以检查第一个数字是否为 '1'?
private Long registration;
英文:
How to use bean-validation @Pattern in the field below to check if the first digit is '1'?
private Long registration;
答案1
得分: 1
以下是翻译好的内容:
正则表达式如下,它表示必须以1开头,之后可以是任何内容:
@Pattern(regexp = "^1.*$")
private Long registration;
英文:
Regex bellow says it must start with 1 and have anything after that
@Pattern (regexp = "^1.*$")
private Long registration;
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论