JS中字串切片

2022-04-01 06:02:42 字數 575 閱讀 1221

1、charat

作用:根據索引值獲取字串

s1= "hello world";

//根據索引求字元

var mychar = s1.charat(4);

console.log(mychar);

//o

2、indexof

作用:根據字元獲取索引

s1= "hello world";

//根據字元獲取索引

var myindex = s1.indexof(" ");

console.log(myindex);

//5

3、slice

作用:對字串進行切片

特點:顧頭不顧尾,用法與python的切片相似

s1= "hello world";

//根據字元獲取索引

var myindex = s1.indexof(" ");

//根據索引切片

var s2 = s1.slice(myindex+1);

console.log(s2)

字串切片

字串切片 字串切片一般有兩種方法 split 和re.split split 法 str line1 abcdefg nline2 abc nline4 abcd str.split line1 abcdefg line2 abc line4 abcd re.split 法 適用於多個分隔符或者是分...

字串切片

s abc a s 0 第乙個 b s 1 第二個 c s 2 第三個 print a a print b b print c c獲取字串的一部分 子串 這個時候採取切片的方式獲取,切片需要在中括號中填入兩個數字,中間用冒號分開,表示子串的開始位置和結束位置,並且這是半閉半開區間,不包括最後的位置。...

python中的字串切片

start stop step 即 開始索引 結束索引 步長值 開始索引 同其它語言一樣,從0開始。序列從左向右方向中,第乙個值的索引為0,最後乙個為 1 結束索引 切片操作符將取到該索引為止,不包含該索引的值。步長值 預設是乙個接著乙個切取,如果為2,則表示進行隔一取一操作。步長值為正時表示從左向...