一、示例
const str = "Hello, World!";
console.log(str.substring(0, 5)); // 输出: "Hello"
console.log(str.substring(7)); // 输出: "World!"
console.log(str.substring(7, 12)); // 输出: "World"
console.log(str.substring(12, 7)); // 输出: "World" (自动交换参数)
console.log(str.substring(-3, 5)); // 输出: "Hello" (负数视为 0)
console.log(str.substring(5, 5)); // 输出: "" (空字符串)
二、定义
substring() 方法是 JavaScript 字符串对象的一个内置方法,用于返回一个字符串的子字符串。它接受两个参数,分别是结束索引和结束索引。
三、语法
string.substring(startIndex, endIndex)
四、参数
1、
startIndex
:必需,一个非负整数,表示子字符串的起始位置。
2、endIndex
:可选,一个非负整数,表示子字符串的结束位置(不包括该位置的字符)。如果省略,则返回从startIndex
到字符串末尾的所有字符。
五、返回值
返回一个新的字符串,包含从
startIndex
到endIndex
(不包括endIndex
)之间的字符。
六、注意事项
1、如果
startIndex
等于endIndex
,返回一个空字符串。
2、如果startIndex
或endIndex
为负数,它们会被视为 0,返回一个空字符串。
3、如果startIndex
大于endIndex
,会自动交换这两个参数的位置。