首頁 > web前端 > js教程 > 主體

JavaScript Split()方法_javascript技巧

WBOY
發布: 2016-05-16 15:24:56
原創
1212 人瀏覽過

Definition and usage of split() method:

The

split() method can use the substring of the string as a delimiter to split the string into a string array and return this array.

Note: The substring used as a delimiter will not become part of the elements of the returned array or a member of the array elements.

Here we only introduce the use of ordinary characters as separators. For information on using regular expressions as separators, please refer to the regular expression split() function chapter.

Click to see more related String object methods and properties.

Grammar structure:

Copy code The code is as follows:

stringObject.split(separator,limit)

Parameter list:

参数 描述
separator 必需。用于分割字符串的子字符串。
:如果此参数为一个空字符串"",那么stringObject中的每个字符都会被分割
limit 可选。设定字符串被分割的次数,如果省略此参数,则不限制分割次数。

註:如果此參數為一個空字串"",那麼stringObject中的每個字元都會被分割

limit 可選。設定字串被分割的次數,如果省略此參數,則不限制分割次數。

實例碼:

複製程式碼 程式碼如下:

var a="a、b、c、d、e";
console.log(a.split("、"));

使用子字串「、」作為分隔符號分割字串,此分隔符號不會成為陣列元素的一部分或陣列元素的一員。輸出結果:a,b,c,d,e。

複製程式碼 程式碼如下:

var a="a、b、c、d、e";
console.log(a.split("、",2));

限定的了字串分割的次數,也就是限制了傳回數組的維數。輸出結果:2。

複製程式碼 程式碼如下:

var a="a、b、c、d、e";
console.log(a.split(""));

使用空字串作為分隔符,那麼字串中的每個字元都會被分割。輸出結果:a,、,b,、,c,、,d,、,e。

以上內容是小編跟大家介紹的JavaScript Split()方法的相關知識,希望大家喜歡。

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!