作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你们中有人碰巧知道如何使用分配给枚举的正则表达式来验证字符串是否适合它吗?
最佳答案
你可以给枚举一个检查它的方法
public enum RecordField {
...;
// I always keep the Pattern for regexes that don't change
// to avoid repetetive compilation
private Pattern pattern;
RecordField(String regex) {
pattern = Pattern.compile(regex);
}
public boolean isMatch(String toTest) {
return pattern.matcher(toTest).matches();
}
}
然后像这样使用它
RecordField.PKN.isMatch(yourString);
关于java - 如何将正则表达式分配给某些枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46526449/
我是一名优秀的程序员,十分优秀!