DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> JavaScript中字符串分割函數split用法實例
JavaScript中字符串分割函數split用法實例
編輯:JavaScript綜合知識     

 先來看下面這段代碼:

1 2 3 4 5 6 <script type="text/javascript"> var str="How are you doing today?" document.write(str.split(" ") + "<br />") document.write(str.split("") + "<br />") document.write(str.split(" ",3)) </script>

輸出結果如下:

1 2 3 How,are,you,doing,today? H,o,w, ,a,r,e, ,y,o,u, ,d,o,i,n,g, ,t,o,d,a,y,? How,are,you

范例:

1 2 "2:3:4:5".split(":") //將返回["2", "3", "4", "5"] "|a|b|c".split("|") //將返回["", "a", "b", "c"]

使用下面的代碼,可以把句子分割成單詞:

1 var words = sentence.split(' ')

如果您希望把單詞分割為字母,或者把字符串分割為字符,可使用下面的代碼:

1 "hello".split("") //可返回 ["h", "e", "l", "l", "o"]

若只需要返回一部分字符,請使用 howmany 參數:

1 "hello".split("", 3) //可返回 ["h", "e", "l"]

或者使用正則表達式作為 separator:

1 var words = sentence.split(/s+/)
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved