我对创建自己的正则表达式完全陌生。我有一个 reg ex 开发了我的团队成员,如下所示
^\s*-?\d{1,3}(\.\d{1,4})?\s*$
这将确保输入的值最多为 3 位,并且可能有也可能没有负号。
如果我用一个值“-1000”进行测试,它会说输入的值不符合要求,并向用户显示错误。
我需要以这样的方式修改表达式:
If a “-“ sign is there, it can have more than 3 digits and decimals. [But if the user enter a “-“ and any alphabets, it should not match ]