查找字符串中特定的字符,若找到,则返回该字符 - match() 方法

  1. <html>
  2. <body>
  3.  
  4. <script type="text/javascript">
  5.  
  6. var str="Hello world!"
  7. document.write(str.match("world") + "<br />")
  8. document.write(str.match("World") + "<br />")
  9. document.write(str.match("worlld") + "<br />")
  10. document.write(str.match("world!"))
  11.  
  12. </script>
  13.  
  14. </body>
  15. </html>