JavaScript
JavaScript RegExp 对象
当使用构造函数创造正则对象时,需要常规的字符转义规则(在前面加反斜杠 \)
源代码:
点击运行 »
<script> var str = 'mifengjc'; var patt1 = new RegExp('\w', 'g'); // 有转义作为正则表达式处理 var patt2 = new RegExp('\w', 'g'); // 无转义作为字符串处理 var patt3 = /\w+/g; // 与 patt1 效果相同 document.write(patt1.test(str)) //输出 true document.write("<br>") document.write(patt2.test(str)) //输出 false document.write("<br>") document.write(patt3.test(str)) //输出 true </script>
运行结果:
点击运行 »