01、Substr
; b6 T+ y, w5 x. n9 l$ ?: M4 \ 该substr(start, length)方法提取字符串的一部分,从指定的索引处开始,并返回指定数量的字符。
$ ]' T9 D8 g# T( A5 u$ N) rconst quote = "Winter is coming";
const part1 = quote.substr(0, 6);
//Winter
const part2 = quote.substr(10, 6);
//coming 请注意,第一个字符在index处为0。该start指数是必需的,但 length是可选的。如果省略,它将提取字符串的其余部分。
: v u. t ~( i( Sconst quote = "Winter is coming";
const part = quote.substr(6);
// is coming 02、Substring9 q( {+ ]8 Z" Q# v& c
该substring(start, end)方法返回start和end索引之间的字符串部分。它从start索引处的字符开始到结束,但不包括索引处的字符end。
& i. p- p3 T' N7 p! t+ ~: zconst quote = "We Stand Together";
const part = quote.substring(3, 8);
// Stand 如果end省略索引,它将提取到字符串的末尾。
5 b, c E% u2 d5 N, T5 Lconst quote = "We Stand Together";
const part = quote.substring(3);
// Stand Together 与indexOf方法结合使用,效果会更好。该indexOf方法返回第一个索引,在该索引处可以找到给定的字符串文本,否则返回-1。考虑以下代码在第一个逗号之后提取文本。
- @2 ^' ?; O8 a$ N1 dconst quote = "You know nothing, Jon Snow";
const commaIndex = quote.indexOf(",");
const part = quote.substring(commaIndex + 1);
//" Jon Snow" 03、Slice
: {0 Q! L$ b1 ~- U4 y$ b5 h 该slice(start, end)方法返回start和end索引之间的字符串部分。slice像substring。- L5 b9 t2 b3 X' ? D+ V# X5 j
const quote = "We Stand Together";
const part = quote.slice(3, 8);
// Stand 如果end省略索引,它将提取到字符串的末尾。
7 o3 K* [9 k$ Q1 r- z2 `, Tconst quote = "We Stand Together";
const part = quote.slice(3);
// Stand Together slice基本上是为了模仿阵列接口而添加的。(数组中有一个同名的方法在两个索引之间提取其一部分,并返回一个新的浅表副本)。8 o' c& Q8 G3 A6 a7 K4 v! Q
字符串在JavaScript中是不可变的。所有这些方法都不会更改原始字符串。 |