slice()方法
接受两个参数,起始索引和结束索引(可选)。它返回从起始索引到结束索引(不包括结束索引)之间的子字符串。
let str = 'Hello, World!'; let result = str.slice(7, 12); // 截取从索引7到索引12之前的字符 console.log(result); // 输出 "World"
substring()方法
接受两个参数,起始索引和结束索引(可选)。它返回从起始索引到结束索引(不包括结束索引)之间的子字符串。
let str = 'Hello, World!'; let result = str.substring(7, 12); // 截取从索引7到索引12之前的字符 console.log(result); // 输出 "World"
substr()方法
接受两个参数,起始索引和要截取的字符数(可选)。它返回从起始索引开始的指定字符数的子字符串。
let str = 'Hello, World!'; let result = str.substr(7, 5); // 从索引7开始截取5个字符 console.log(result); // 输出 "World"