JavaScript 参考手册
JavaScript RegExp . 元字符
对字符串中的 "h.t" 进行全局搜索
源代码:
点击运行 »
<script> var str = "That's hot!"; var patt1 = /h.t/g; document.write(str.match(patt1)); </script>
运行结果:
点击运行 »