我需要一个验证框架的regfex,它接受用于验证的正则表达式格式。 我不能使用算术和比较运算符。我提出了一个解决方案,但它没有按预期工作。 我想知道我想出的正则表达式有什么问题以及如何正确排序
从10429
到40999
我的解决方案:
^1042[9-9]|104[3-9][0-9]|10[5-9][0-9][0-9]|1[1-9][0-9][0-9][0-9][0-9]|[2-3][0-9][0-9][0-9][0-9]|40[0-9][0-9][0-9]
但是这个没有用。
答案 0 :(得分:9)
试试这个
^(10429|104[3-9][0-9]|10[5-9][0-9]{2}|1[1-9][0-9]{3}|[23][0-9]{4}|40[0-9]{3})$
要生成模式编号范围,请访问here。
希望这有帮助。
答案 1 :(得分:4)
1[1-9][0-9][0-9][0-9][0-9]
- 数字太多。^1|2|3
实际上意味着(?:^1)|2|3
- 您需要^(?:10429|...|40[0-9][0-9][0-9])$
。答案 2 :(得分:0)
10429|104[3-9][0-9]|10[5-9][0-9]{2}|1[1-9][0-9]{3}|[23][0-9]{4}|40[0-9]{3}
应该做到这一点。
虽然为什么你需要这个超出我...
答案 3 :(得分:0)
试试这个^(10429|104[3-9]\d|10[5-9]\d{2}|1[1-9]\d{3}|[2-3]\d{4}|40\d{3})$
答案 4 :(得分:0)
我在这里看到一些非常长的正则表达式。无需在模式中进行大量冗余即可解决此任务。如果你没有正则表达式以外的任何东西,那么这就是你想要的模式:
^(([123][1-9]|[234]0)[0-9]{3}|10([5-9][0-9]{2}|4([3-9][0-9]|29)))$
此处展开以向您展示其含义:
^ #The beginning of the line. This ensures 10429 passes, but 9999910429 doesn't.
(
([123][1-9]|[234]0) #This lets the first two digits be anything from 11-40. We'll deal with 10xxx later on.
[0-9]{3} #If the first two digits are 11-40, then the last three can be anything from 000-999.
|
10 #Okay, we've covered 11000-40999. Now for 10429-10999.
(
[5-9][0-9]{2} #Now we've covered 10500-10999; on to the 104xx range.
|
4
(
[3-9][0-9] #Covers 10430-10499.
|
29 #Finally, the special case of 10429.
)
)
)
$ #The end of the line. This ensures 10429 passes, but 104299999 doesn't.
如果数字不是整个输入,而是嵌入在字符串中(例如,您想要获取所有数字
从字符串“blah blah 11000 foo 39256 bar 22222”中,用^
替换$
和\b
。
在Regexr上查看它:http://regexr.com?312p0
答案 5 :(得分:0)
试试这个 - \ b(10429 | 104 [3-9] [0-9] | 10 [5-9] [0-9] {2} | 1 [1-9] [0-9] { 3} | [23] [0-9] {4} | 40 [0-9] {3})\ b'/ p>