javascript中數組和字符串的方法對比
來源:易賢網 閱讀:813 次 日期:2016-08-01 14:07:59
溫馨提示:易賢網小編為您整理了“javascript中數組和字符串的方法對比”,方便廣大網友查閱!

下面小編就為大家帶來一篇javascript中數組和字符串的方法對比。小編覺得挺不錯的,現在就分享給大家,也給大家做個參考。

前面的話

字符串和數組有很多的相同之處,它們的方法眾多,且相似度很高;但它們又有不同之處,字符串是不可變值,于是可以把其看作只讀的數組。本文將對字符串和數組的類似方法進行比較

可索引

ECMAScript5定義了一種訪問字符的方法,使用方括號加數字索引來訪問字符串中的特定字符

可索引的字符串的最大的好處就是簡單,用方括號代替了charAt()調用,這樣更加簡潔、可讀并且可能更高效。不僅如此,字符串的行為類似于數組的事實使得通用的數組方法可以應用到字符串上

如果參數超出范圍或是NaN時,則輸出undefined

var str = "hello";

console.log(str[0]);//h

console.log(str[[1]]);//e

console.log(str[false]);//undefined

console.log(str[-1]);//undefined

console.log(str[NaN]);//undefined

console.log(str[]);//報錯

---------------------------------------------

var arr = ['h','e','l','l','o'];

console.log(arr[0]);//h

console.log(arr[[1]]);//e

console.log(arr[false]);//undefined

console.log(arr[-1]);//undefined

console.log(arr[NaN]);//undefined

console.log(arr[]);//報錯

轉換

字符串可以使用split()方法轉換為數組;而數組可以使用join()方法轉換為字符串

【split()】

split()方法基于指定的分隔符將一個字符串分割成多個字符串,并將結果放在一個數組中,分隔符可以是字符串,也可以是一個正則表達式

該方法可以接受(可選的)第二個參數用于指定數組的大小。如果第二個參數為0-array.length范圍內的值時,按照指定參數輸出,其他情況將所有結果都輸出

若指定分隔符沒有出現在字符串中,則以數組的形式返回原字符串的值

var colorText = 'red,blue,green,yellow';

console.log(colorText.split(''));//["r", "e", "d", ",", "b", "l", "u", "e", ",", "g", "r", "e", "e", "n", ",", "y", "e", "l", "l", "o", "w"]

console.log(colorText.split(','));//["red", "blue", "green", "yellow"]

console.log(colorText.split(',',2));//["red", "blue"]

console.log(colorText.split(',',6));//["red", "blue", "green", "yellow"]

console.log(colorText.split('-'));//["red,blue,green,yellow"]

console.log(colorText.split(/\,/));//["red", "blue", "green", "yellow"]

console.log(colorText.split(/e/));//["r", "d,blu", ",gr", "", "n,y", "llow"]

console.log(colorText.split(/[^\,]+/));//將除去逗號以外的字符串變為分隔符["", ",", ",", ",", ""],IE8-會識別為[",",",",","]

【join()】

join()方法可以使用不同的分隔符來構建這個字符串,join()方法只接收一個參數,用作分隔符的字符串,然后返回包含所有數組項的字符串

如果不給join()方法傳入任何值,則使用逗號作為分隔符

var a = [1,2,3];

console.log(a.join());//'1,2,3'

console.log(a.join(' '));//'1 2 3'

console.log(a.join(''));//'123'

var b = new Array(10);

b.join('-');//'---------',9個連字符組成的字符串

如果數組中的某一項的值是null或者undefined,則該值在join()方法返回的結果中以空字符串表示

var colors = [1,undefined,2,null,3];

console.log(colors.join());//'1,,2,,3'

由于字符串是類數組對象,所以,也可以使用join()方法

console.log(Array.prototype.join.call('hello', '-'));// "h-e-l-l-o"

--------------------------------------------------

var str = 'test';

var arr = str.split('')//["t", "e", "s", "t"]

console.log(arr.join('-'));//'t-e-s-t'

拼接  

字符串和數組共同擁有拼接方法concat()

var value = 'hello';

console.log(value.concat('world'));//'helloworld'

console.log(value.concat(['world']));//'helloworld'

console.log(value.concat([['world']]));//'helloworld'

---------------------------------------------

var value = ['hello'];

console.log(value.concat('world'));//["hello", "world"]

console.log(value.concat(['world']));//["hello", "world"]

console.log(value.concat([['world']]));//["hello", ["world"]]

創建

字符串和數組都擁有創建方法slice(),分別用于創建子字符串和子數組

slice()方法基于當前數組(或字符串)中的一個或多個項創建一個新數組(或字符串),接受一個或兩個參數,即要返回項的起始和結束位置,最后返回新數組(或字符串)

slice(start,end)方法需要兩個參數start和end,返回這個數組(或字符串)中從start位置到(但不包含)end位置的一個子數組(或字符串);如果end為undefined或不存在,則返回從start位置到數組(或字符串)結尾的所有項

如果start是負數,則start = max(length + start,0)

如果end是負數,則end = max(length + end,0)

start和end無法交換位置

var numbers = [1,2,3,4,5];

console.log(numbers.slice(2));//[3,4,5]

console.log(numbers.slice(2,undefined));//[3,4,5]

console.log(numbers.slice(2,3));//[3]

console.log(numbers.slice(2,1));//[]

console.log(numbers.slice(-3));//-3+5=2 -> [3,4,5]

console.log(numbers.slice(-8));//max(5 + -8,0)=0 -> [1,2,3,4,5]

console.log(numbers.slice(0,-3));//-3+5=2 -> [1,2]

console.log(numbers.slice(-2,-1));//-2+5=3;-1+5=4; -> [4]

-----------------------------------------------------

var stringValue = 'hello world';

console.log(stringValue.slice());//'hello world'

console.log(stringValue.slice(2));//'llo world'

console.log(stringValue.slice(20));//''

console.log(stringValue.slice(2,undefined));//'llo world'

console.log(stringValue.slice(2,-5));//'llo '

console.log(stringValue.slice(2,-20));//''

console.log(stringValue.slice(-2,2));//''

console.log(stringValue.slice(-2,-20));//''      

console.log(stringValue.slice(-2,20));//'ld'

console.log(stringValue.slice(-20,2));//'he'

console.log(stringValue.slice(-20,-2));//'hello wor'

位置

字符串和數組都擁有查找位置的兩個方法:indexOf()和lastIndexOf()。位置方法和中括號[]讀取方法正好相反,一個是通過項查找索引,一個是通過索引查找項

【indexOf()】

indexOf(search,start)方法接收search和start兩個參數,返回search首次出現的位置,如果沒有找到則返回-1

字符串中的search參數會調用String()轉型函數,將該參數的非字符串值轉換為字符串;而數組中的search參數則使用嚴格相等運算符(===)進行比較

不論是數組還是字符串,第二個參數start都會隱式調用Number()轉型函數,將start非數字值(undefined除外)轉換為數值;若忽略該參數或該參數為undefined、NaN時,start = 0

若start參數為負數,字符串的處理是將start=0;而數組的處理是start = max(0,start+length)

var string = 'hello world world';

console.log(string.indexOf('ld'));//9

console.log(string.indexOf('ld',undefined));//9

console.log(string.indexOf('ld',NaN));//9

console.log(string.indexOf('ld',-1));//9

console.log(string.indexOf('ld',10));//15

console.log(string.indexOf('ld',[10]));//15

console.log(string.indexOf('true',[10]));//-1

console.log(string.indexOf(false,[10]));//-1

-----------------------------------------------------

var arr = ['a','b','c','d','e','a','b'];

console.log(arr.indexOf('a',undefined));//0

console.log(arr.indexOf('a',NaN));//0

console.log(arr.indexOf('a',1));//5

console.log(arr.indexOf('a',true));//5

console.log(arr.indexOf('a',-1));//max(0,-1+7)=6; -1

console.log(arr.indexOf('a',-5));//max(0,-5+7)=2; 5

console.log(arr.indexOf('a',-50));//max(0,-50+7)=0; 0

【lastIndexOf()】

與indexOf()方法相反,lastIndexOf()方法是從右向左查找

lastIndexOf(search,start)方法接收search和start兩個參數,返回searchString第一次出現的位置,如果沒有找到則返回-1

類似地,字符串中的search參數會調用String()轉型函數,將該參數的非字符串值轉換為字符串;而數組中的search參數則使用嚴格相等運算符(===)進行比較

不論是數組還是字符串,第二個參數start都會隱式調用Number()轉型函數,將start非數字值(undefined除外)轉換為數值

若忽略該參數或該參數為undefined、NaN時,字符串的處理是start = length - 1;而數組的處理是start = 0

若start參數為負數,字符串的處理是將start=0;而數組的處理是start = max(0,start+length)

var string = 'hello world world';

console.log(string.lastIndexOf('ld'));//15

console.log(string.lastIndexOf('ld',undefined));//15

console.log(string.lastIndexOf('ld',NaN));//15

console.log(string.lastIndexOf('ld',-1));//-1

console.log(string.lastIndexOf('h',-1));//0

console.log(string.lastIndexOf('w',undefined));//12

console.log(string.lastIndexOf('ld',10));//9

console.log(string.lastIndexOf('ld',[10]));//9

console.log(string.lastIndexOf('true',[10]));//-1

console.log(string.lastIndexOf(false,[10]));//-1

------------------------------------------------------

var arr = [1,2,3,'1','2','3'];

console.log(arr.lastIndexOf('2'));//4

console.log(arr.lastIndexOf(3));//2

console.log(arr.lastIndexOf(0));//-1

var arr = ['a','b','c','d','e','a','b'];

console.log(arr.lastIndexOf('b'));//6

console.log(arr.lastIndexOf('b',undefined));//-1

console.log(arr.lastIndexOf('a',undefined));//0

console.log(arr.lastIndexOf('b',NaN));//-1

console.log(arr.lastIndexOf('b',1));//1

console.log(arr.lastIndexOf('b',-1));//max(0,-1+7)=6; 6

console.log(arr.lastIndexOf('b',-5));//max(0,-5+7)=2; 1

console.log(arr.lastIndexOf('b',-50));//max(0,-50+7)=0; -1

以上這篇javascript中數組和字符串的方法對比就是小編分享給大家的全部內容了,希望能給大家一個參考

更多信息請查看網絡編程
由于各方面情況的不斷調整與變化,易賢網提供的所有考試信息和咨詢回復僅供參考,敬請考生以權威部門公布的正式信息和咨詢為準!

2026國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯系我們 | 人才招聘 | 網站聲明 | 網站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
云南網警備案專用圖標
聯系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權所有:易賢網
云南網警報警專用圖標
未满十八18勿进黄网站免费看