4

如何编写正则表达式来验证这种模式?

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)。

4

7 回答 7

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,只需删除最后一个|

于 2012-04-11T14:08:34.283 回答
1

/ ([0-9] {6} ) | ( ( [0-9]{0-5} & [*]{1-5} ) {0-6})/

像这样的东西?

于 2012-04-11T14:03:18.493 回答
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

而我错了。你可以像 Colin 那样向前看。这就是要走的路。

于 2012-04-11T14:11:50.793 回答
1
[1-6]{6}|([1-6]|\*){1,6}[^123456]

这适用于您提供的输入...

如果您想要其他内容,请更新我...

于 2012-04-11T14:17:32.450 回答
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))
}
于 2012-04-11T14:17:51.897 回答
0

如果允许任何数字 0..9,请尝试此正则表达式[0-9*]{2,6}
,如果只有数字 1..6,如您的示例所示[1-6*]{2,6}

这有点棘手,因为这里也12345将被验证为正确的
示例

正如@Colin已经建议的那样,您实际上需要一个环视解决方案

于 2012-04-11T14:02:55.080 回答
0

试试这个:( 更新)

([0-6]{6})|([0-6\*]{1,6})

它应该工作...

于 2012-04-11T14:09:04.160 回答