简单教程
提交运行
代码编辑器:
<script> var str="Hello world!"; document.write(str.match("world") + "<br>"); document.write(str.match("World") + "<br>"); document.write(str.match("world!")); </script>
运行结果: