标签:字符串 class pre onload 正则 match function nbsp text
js中验证字符串有时需要用到正则表达式,一般情况下直接写正则进行验证就行。
但是遇到需要把部分正则作为参数传递就麻烦一点,需要用到RegExp()对象。
<script type="text/javascript"> window.onload = function () { var str = "123456789"; var pattern = "\^\[0-9\]"; var reg = new RegExp(pattern + "\*\$","g"); if (str.match(reg)) { alert("给正则传参验证字符串成功!"); } } </script>
标签:字符串 class pre onload 正则 match function nbsp text
原文地址:https://www.cnblogs.com/lei01/p/9932694.html