我正在尝试验证一个变量是否包含 Javascript 中的 9 位数字。这应该是基本的,但由于某种原因,这失败了:
var test = "123123123";
var pattern = new RegExp("/\d{9}/");
if(test.match(pattern))
{
//This code never executes
}
else
{
//This code is always executing
alert('no match!');
}
谁能看到我为什么没有比赛?
我还尝试使用以下方法对整数进行类型转换测试:
test = Number(test);
...但这不起作用,因为它必须是 String 才能支持 .match 方法。