0到1000的正整数匹配的正则表达式怎么写
问题描述:
0到1000的正整数匹配的正则表达式怎么写
答
var r=/^(0|[1-9]\d\d|1000)$/;
var t="1000";
alert(r.test(t));