正则表达式中的长度

时间:2016-07-21 16:52:25

标签: c# regex validation

我需要检查输入值:

  • x&gt; 0; x <= 8,00
  • 逗号后最多2位数。

我的regex = 8,0|8,00|[1-8]{1}|([0-7]{1,1},[0-9]{1,2})

[1-8]{1}: when users type only 1 2 3 4 .... 8
[0-7]{1,1}: only one character from 0 to 7 before comma
[0-9]{1,2}: maximum 2 digits after comma

我键入1,23412344但它仍然有效。你能指出我在这种模式中的错误并为我纠正吗?

0 个答案:

没有答案