JavaScript
JavaScript 字符串(String) 对象
match()函数用来查找字符串中特定的字符,并且如果找到的话,则返回这个字符。
源代码:
点击运行 »
<script> var str = "Hello world!"; document.write(str.match("world") + "<br>"); document.write(str.match("World") + "<br>"); document.write(str.match("world!")); </script>
运行结果:
点击运行 »