JavaScript 参考手册
JavaScript RegExp \b 元字符
对字符串中的单词的开头或结尾进行 "W3" 的全局搜索
源代码:
点击运行 »
<script> var str = "Visit 蜜蜂教程"; var patt1 = /W3/g; document.write(str.match(patt1)); </script>
运行结果:
点击运行 »