如何编写正则表达式来验证此模式?
123456 - correct
*1 - correct
1* - correct
124** - correct
*1*2 - correct
* - correct
123456* - incorrect (size 7)
12345 - incorrect (size 5 without stars)
试过:
^[0-9]{6}$|^(([0-9]){1,6}([*]){1,5}){1,6}+$
但它允许有超过6个数字,并且不允许星号在数字之前。 没有“*”符号的最小/最大计数(但所有符号的最大计数为6)。
答案 0 :(得分:14)
你走了:
^(?:\d{6}|(?=.*\*)[\d*]{1,6}|)$
这是它的作用:
^ <-- Start of the string (we don't want to capture more than that)
(?: <-- Start a non captured group (it will be used to do the "or" part)
\d{6} <-- 6 digits, nothing more
| <-- OR
(?=.*\*) <-- Look ahead for a '*' (you could replace the first * with {0,5})
[\d*] <-- digits or '*'
{1,6} <-- repeated one to six times (we know from the look ahead that there will be at least one '*'
| <-- OR (nothing)
) <-- End the non capturing group
$ <-- End of the string
我不太确定你是否想要空案例(但是你说0到6),如果你真的想要1到6就删除最后一个|
答案 1 :(得分:1)
/([0-9] {6})| (([0-9] {0-5}&amp; [*] {1-5}){0-6})/
这样的事情?
答案 2 :(得分:1)
我担心你必须尝试*可能拥有的每个职位,如下:
/([0-9]{6}|\*[0-9][0-9\*]{0,4}|[0-9]\*[0-9\*]{0,4}|[0-9]{2}\*[0-9\*]{0,3}|[0-9]{3}\*[0-9\*]{0,2}|[0-9]{4}\*[0-9\*]?|[0-9]{5}\*)/
修改强>
然而,上述解决方案不允许** 2
我错了。你可以像科林一样向前看。这是要走的路。
答案 3 :(得分:1)
[1-6]{6}|([1-6]|\*){1,6}[^123456]
这适用于您提供的输入......
如果您想要其他内容,请更新我...
答案 4 :(得分:1)
只有正则表达式才能做到这一点。您还需要进行长度检查。但是,这是一个有用的正则表达式。
([\d*]*\*[\d*]*)|(\d{6})
要验证输入,请尝试以下操作:
validate(input)
{
regex = "([\d*]*\*[\d*]*)|(\d{6})";
digitregex = ".*\d.*"; // this makes sure they aren't all stars
return (input.length < 7 and regex.matches(input) and digitregex.matches(input))
}
答案 5 :(得分:0)
如果允许任何数字0..9,请尝试此正则表达式[0-9*]{2,6}
如果只有数字1..6,例如[1-6*]{2,6}
这有点棘手,因为12345
也会被验证为正确
example here
您实际上需要look-around
建议的@Colin解决方案答案 6 :(得分:0)
试试这个:(已更新)
([0-6]{6})|([0-6\*]{1,6})
它应该有用......