js字串擷取substring和substr

2021-09-29 05:11:49 字數 821 閱讀 6350

定義測試使用的字串

var text =

"hello world"

;

字串hello world字元對應下標he

llow

orld

0123

4567

8910字串擷取

// substring(start, end) 擷取範圍:[start, end)

text.

substring(6

,11)"world"

// substr(start, length)

text.

substr(6

,5)"world"

字串查詢

// 從前向後

text.

indexof

("o")4

// 從後向前

text.

lastindexof

("o"

)7

字串和陣列轉換

// 字串轉陣列

text.

split

(" ")[

"hello"

,"world"

]// 陣列轉字串

["hello"

,"world"].

join

("-"

)"hello-world"

參考

js擷取字串方法例項

js字串擷取

substr 方法 返回乙個從指定位置開始的指定長度的子字串。stringvar.substr start length 引數stringvar 必選項。要提取子字串的字串文字或 string 物件。start 必選項。所需的子字串的起始位置。字串中的第乙個字元的索引為 0。length 可選項。在...

js 字串擷取

以下我介紹幾種常用的字串擷取的方法 slice let arr 0123456789 console.log arr.slice 0,3 0就代表起始位置開始擷取,3就是結束的位置 不包括3 0和3都代表索引 split var str 012345 6789 var arr str.split 指...

js字串擷取

之前在獲取元素屬性時,踩了個坑,記錄一下。用selenium做web自動化時,獲取元素屬性時,有時候會有單位,比如元素的寬高,得到的屬性會是xxpx這樣,但我只想要數字。就用了這樣的函式將數字取了出來。def get num original data num re.sub d original d...