JavaScript 参考手册
JavaScript RegExp [^abc] 表达式
对不在字符范围 [a-h] 内的字符进行全局搜索
源代码:
点击运行 »
<script> var str = "Is this all there is?"; var patt1 = /[^a-h]/g; document.write(str.match(patt1)); </script>
运行结果:
点击运行 »