JS中的字串方法

2021-10-03 06:21:05 字數 1136 閱讀 2731

string型別

string型別是字串的物件包裝型別    

字串的length方法

1.字元方法

charat()   charcodeat()  

2  字串操作方法

字串的拼接   concat 方法,一般用+號拼接字串

還有三個擷取字串的方法,

slice()  substring() substr()

當傳入的引數是正數的時候

slice 和 substring 方法傳入的引數是一樣的,包括前面的字元不包括後面的, 

substr 方法第二個引數為擷取的字串的個數

當傳入的引數是負數的時候,三個方法傳入的引數是不同的   

slice()會把 負數的引數值,都加上字串的長度,

substring() 把所有的負引數都轉換為0  , 

substr () 方法將負的第乙個引數加上字串的長度,負的第二個引數轉換為0

3字串的位置方法

indexof()   

lastindexof()

4 trim() 方法

5 字串的大小寫轉化方法

touppercase()   tolowercase()

6. 字串的模式匹配方法

match 方法    search 方法     replace 方法

7. localcompare 方法   fromcharcode   方法

這個方法比較兩個字串 返回值為 0 -1 1

es6中的字串擴充套件

includes()  方法返回布林值

statrwith()

endwith()

repeat()

8.es6中的模板字串

JS中字串方法

lang en charset utf 8 字串方法title head var str 王hello world var str1 newstring 0123456789 console.log str.length console.log str.charat 1 查詢索引為1的位置的字母 c...

js中字串的方法

1.charat 返回指定索引出的字元 var str abcd var a str.charat 0 console.log a a console.log str abcd 2.charcodeat 返回指定索引出的unicode字元 str.charcodeat 0 97 3.indexof ...

JS中字串常用方法

js中字串常用方法 1 tolowercase 把字串轉為小寫,返回新的字串。var str hello world var str1 str.tolowercase console.log str1 hello world 2 touppercase 把字串轉為大寫,返回新的字串。var str ...