这里我想制作仅包含0到6个数字的字符串的regx。 这个字符串包含0到6个这样的数字。
Example-1 : "010002030405" Valid String
这个字符串只包含0到6个数字,所以我在这里使用了这个regx "[0-6]*"
。但是我想在这个字符串中验证还有一件事,我想在奇数位置只需要0,而不是奇数位置。 0可以放在奇数和偶数两个上,但1-6只能放在偶数位置。
这里我给了你一些有效和无效的字符串示例
Valid : 000102000004
invalid : 0023015006
在这里我使用了这段代码请建议我或者告诉我在我的regx中需要更改的内容以满足以下验证
1) String contains only 0-6 numbers nothing else.
2) 1-6 would be only even positions only they would not be at odd position ever, 0 would be odd and even position.
代码:
public boolean isOptions(String input) {
String patternString = "[0-6]*";
Pattern pattern = Pattern.compile(patternString);
return pattern.matcher(input).matches();
}
答案 0 :(得分:7)
没试过,但可能有效:
(0[0-6])*0?