DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> JavaScript搜索字符串並將搜索結果返回到字符串的方法
JavaScript搜索字符串並將搜索結果返回到字符串的方法
編輯:JavaScript綜合知識     

 本文實例講述了JavaScript搜索字符串並將搜索結果返回到字符串的方法。分享給大家供大家參考。具體如下:

javascript操作字符串帶有一個match方法用於搜索字符串,如果找到指定的字符串則返回搜索字符串,如果未找到則返回null,match方法區分大小寫

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

返回結果:

world
null
null
world!

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved