JavaScript的String對象的substring()方法用于從字符串中提取指定位置的子字符串。
它有兩種使用方式:
start:必需,表示要提取的子字符串的起始位置,是一個整數值。如果為負數,則表示從字符串的末尾開始計算。
end:可選,表示要提取的子字符串的結束位置,是一個整數值。如果省略該參數,則提取到字符串的末尾。
下面是一些示例:
var str = "Hello, World!";
console.log(str.substring(0, 5)); // 輸出 "Hello"
console.log(str.substring(7)); // 輸出 "World!"
console.log(str.substring(-6)); // 輸出 "Hello, World!"
console.log(str.substring(7, -1)); // 輸出 "Hello,",因為負數會被轉換為0
console.log(str.substring(0, str.length)); // 輸出整個字符串 "Hello, World!"
需要注意的是,substring()方法不會修改原始字符串,而是返回一個新的字符串。