`bean-validation @Pattern` 第一个数字是 ‘1’

huangapple go评论91阅读模式
英文:

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;

huangapple
  • 本文由 发表于 2020年4月7日 04:52:23
  • 转载请务必保留本文链接:https://go.coder-hub.com/61068766.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定