字串的方法及ES6擴充套件

2021-08-20 19:34:28 字數 632 閱讀 6099

字串方法擴充套件:

charat()

charcodeat()

fromcharcode()

slice

substr

substring

search

match

replace

split

indexof

lastindexof

includes

touppercase,tolowercase

trim

trimleft

trimright

trimstart

trimend

concat

repeat,startswith,endswith,

small

anchor

bold

strike

bigpadstart 在字串的開始位置填充

padend   在字串的結束位置填充

repeat:重複

startswith: 判斷字串是否以某個字串開頭

是的話,返回true,否則返回false

endswith: 判斷字串是否以某個字串結尾

是的話,返回true,否則返回false

ES6中字串擴充套件

for.of 遍歷字串 例如 1 for let codepoint of string 執行結果 說明 三個方法都接收兩個引數,第乙個引數為檢索的值,第二個引數為檢索的起始位置,返回布林值 例如 1 let s hello world 23 const a,b,c 4 s.startswith h...

ES6之字串擴充套件方法(常用)

es6這個string物件倒是擴充套件了不少方法,但是很多都是跟字元編碼相關,個人選了幾個感覺比較常用的方法 還記得我們之前如何判斷某個字串物件是否包含特地字元的嗎?var str google if str.indexof o 1 else indexof本來只是乙個獲取字元對應位置的方法,因為找...

es6對字串的方法的擴充套件

for let i of abcd console.log abcd charat 0 console.log 吉 charat 0 判斷乙個字串是否在另外乙個字串中 var s hello world console.log s.startswith hello console.log s.end...