js字串的常用方法

2021-10-24 04:45:36 字數 1617 閱讀 9406

charat(索引)是找到指定位置的內容並返回,如果沒有對應的索引,那麼返回空字串

var str =

'jack'

// 使用 charat 找到字串中的某乙個內容

var index = str.

charat(2

)console.

log(index)

// c

charcodeat(索引)返回對應索引位置的unicode編碼

var str =

'jack'

// 使用 charat 找到字串中的某乙個內容

var index = str.

charcodeat(0

)console.

log(index)

// 74

indexof就是按照字元找到對應位置的索引

var str =

'jack'

// 使用 indexof 找到對應的索引

var index = str.

indexof

('j'

)console.

log(index)

// 0

substring是用來擷取字串使用的

語法:substring(從哪個索引開始,到哪個索引為止),包含開始索引,不包含結束索引

var str =

'hello'

// 01234

// 使用 substring 擷取字串

var newstr = str.

substring(1

,3)console.

log(newstr)

// el

substr也是用來擷取字串

語法:substr(從哪個索引開始,擷取多少個)

var str =

'hello'

// 01234

// 使用 substr 擷取字串

var newstr = str.

substr(1

,3)console.

log(newstr)

// ell

用於將字串字母轉為小寫或大寫

var str = hello

// 使用 touppercase 轉換成大寫

var upper = str.

touppercase()

console.

log(upper)

// hello

// 使用 tolowercase 轉換成小寫

var lower = upper.

tolowercase()

console.

log(lower)

// hello

重複字串,返回新字串

var str = hello

console.

log(str.

repeat(4

))//hellohellohellohello

JS 字串常用方法

動態方法 1 str.charat index 返回子字串,index為字串下標,index取值範圍 0,str.length 1 動態方法 2 str.charcodeat index 返回子字串的unicode編碼,index取值範圍同上 靜態方法 3 string.fromcharcode n...

js字串常用方法

1 基本包裝型別 var 1 abc var len s1.length console.log len 3這段 在執行時,有乙個問題就是基本型別是沒有屬性方法的,那麼s1.length是怎麼呼叫的呢?這就是用到基本包裝型別。就是把基本型別包裝成複雜型別。基本包裝型別 string number b...

JS字串常用方法

字串常用方法總結 1 tolowercase 把字串轉為小寫,返回新的字串。2 touppercase 把字串轉為大寫,返回新的字串。3 charat 返回指定下標位置的字元。如果index不在0 str.length 不包含str.length 之間,返回空字串。4 charcodeat 返回指定...