标签: javascript regex angular
我给了一个正则表达式
let reg = new RegExp("^[-]?[0-9]*.?[0-9]{1,4}$"); console.log(reg.test("45-45")); //true console.log(reg.test("sd545")); //true console.log(reg.test("5*45")); //true
预期的行为(如果有任何字符串或特殊字符应通过错误显示)
以上所有控制台均应通过false 我在做什么错了?