JavaScript 参考手册
JavaScript RegExp $ 量词
对字符串结尾的 "is" 进行全局搜索
源代码:
点击运行 »
<script> var str = "Is this his"; var patt1 = /is$/g; document.write(str.match(patt1)); </script>
运行结果:
点击运行 »