我需要检查输入值:
我的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但它仍然有效。你能指出我在这种模式中的错误并为我纠正吗?