本文主要和大家分享JavaScript中字串詳解,希望能幫助大家。
一.字串基本
1.字串的建立
基本的資料型別 String
var str = "字串";
引用的資料型別String
var strObj = new String("字串");
2.常用屬性
length 字串長度
var arr="abc"; console.log(arr.length)
3.常用方法
eg:var s = "see me fly I am singing in the sky";
①charAt()傳回字串中指定位置的字符
根據索引取得指定字符,效果與s[1]相當
console.log(s.charAt(1) );//e
②concat 可以用來連接兩個或是多個字串作用跟+ 一樣
console.log(s.concat(" !"," 00")) //see me fly I am singing in the sky ! 00
③indexOf();
a. indexOf()檢查一個字串是否含有指定內容
——如果包含內容,則會回傳其第一次出現的索引
-沒找到指定內容,則回傳-1
b. indexOf('指定的字元',索引a);從a的位置開始找出指定字元
console.log(s.indexOf("b")); //若找不到,則回傳-1
console.log(s.indexOf("m")) ; //4
console.log(s.indexOf("s",5)); //16
④lastIndexOf();用法跟IndexOf是一樣
—隻隻有不過IndexOf()是從前開始查,而lastIndexOf()是從後往上查,但是索引還是從0開始
console.log(s.lastIndexOf("s")); //31
console.log(s.lastIndexOf("s",5)); //索引5開始往前查, 0
⑤slice(start,end)不影響原始字串,只是傳回被截取的指定內容
-start是開始的位置(有包含),end是結束的索引(不包含這個end的字元)
— —如果沒有end的話,則從start開始截取一直到末尾的字元
#——也可以傳遞負數,則從末尾開始計算而不是從頭開始
console.log(s.slice(1,5)); //ee m //a.要 截取 “I am singing” console.log(s.slice(s.indexOf("I"),s.lastIndexOf("g")+1))//I am singing //b.要 截取 “in the sky” console.log(s.lastIndexOf("i")) console.log(s.slice(-10))//in the sky //注意:数组都是从前安排到后面的,所以从末尾-1开始数,i为-10,所以(-10,-1) //但是由于-1这个位置表示到这个数值之前,就停止了,这个数值不进来,所以可以去掉
⑥substring( start,stop)截取一個字串,與slice()類似
——subString(start,stop);start開始(包括),stop結束(不包括)
——這個方法不能接受負值作為參數,如傳遞負值預設為0
-自動調整位置,如stop參數小於start,則自動交換
var newarr2='see me fly '; console.log(newarr2.length) console.log(s.substring(11,26)); //I am singing in console.log(s.substring(10,1)); //ee me fly
⑦substr(start,length)截取字串
——start開始(包括),length是截取的長度
//要截取「I am singing」
var newarr='I am singing';
("I"),newarr.length));
⑧split(separator) 方法用於將字串分割成字串陣列
-separator 表達式
-split("")每個字元之間都會分割,split(" ")空格則是按空格去分割字串
console.log (s.split(" ")); //["see", "me", "fly", "I", "am", "singing", "in", "the", "sky"]
⑨ toLowerCase() 方法用來把字串轉換成小寫。
toUpperCase() 方法用來將字串轉換成大寫
console.log(s.toLowerCase());//see me fly i am singing in the sky
console.log( s.toUpperCase());//SEE ME FLY I AM SINGING IN THE SKY
⑩replace(old,new)替換字串
----old是原字串的字符,new是新的
---替換第一次出現的
console.log(s.replace('me','you'));//see you fly I am singing in the sky
相關推薦:
以上是JavaScript中字串詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!