字串的方法

2022-09-01 03:42:08 字數 768 閱讀 8030

先定義乙個字串:   var str = "abbcalgldkjgldgehlgjldf"

1 indexof(),返回指定字元創第一次出現的位置。

str.indexof('a') //結果是0

2,lastindexof(),返回指定字串最後一次出現的位置。

str.lastindexof('f') //結果是22

3,substring(),提取字串中兩個指定索引號之間的字元(兩個索引不能為負值)

str.substring(0,5) //結果是abbca

4,slice(),提取字串中兩個指定索引號之間的字元(索引可以為負值,-1就是倒數第二位)

str.slice(0,-5) //結果是abbcalgldkjgldgehl

5,charat(),返回指定索引的字元

str.charat(1) //結果是b

6,split(),把字串分割為子字串陣列

str.split() //結果是["abbcalgldkjgldgehlgjldf"]

7,tostring(),返回字串物件,比如把數字轉換成字串物件。

8,tolowercase(),把字串轉換成小寫的。

9,touppercase(),把字串轉換成大寫的。

10,match(),找到乙個或者多個子串或者正規表示式的匹配。

11 ,replace(),替換指定子串或者與正規表示式匹配的子串。

12,search(),檢索指定子串或者與正規表示式匹配的值,返回的值是數字

字串及字串的方法

一 字串 js中的任何資料型別都可以當作物件來看。所以string既是基本資料型別,又是物件。二 宣告字串 var sstr 字串 var ostr new string 字串 三 字串屬性 1.length計算字串的長度 不區分中英文 var str hello world console.log...

字串的方法

獲取 int length 獲取長度 char charat int index 獲取位置上的某個字元 int indexof int ch 因為接受的是asc 碼,返回的是ch在字串中出現的第一次位置 int indexof int ch,int fromindex 從fromindex指定位置獲...

字串的方法

1.charat 下標 作用 查詢該下標位置處的字元,返回乙個字元 2.charcodeat 下標 作用 查詢該下標位置處的字元的unicode編碼 3.fromcharcode 作用 根據乙個unicode編碼值返回對應的字元,與charcodeat 結果相反 4.indexof 作用 查詢某個字...