JavaScript 参考手册
JavaScript RegExp g 修饰符
对 "is" 进行全局且大小写不敏感的搜索
源代码:
点击运行 »
<script> var str = "Is this all there is?"; var patt1 = /is/gi; document.write(str.match(patt1)); </script>
运行结果:
点击运行 »