當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript substr()用法及代碼示例


在 JavaScript 中,String substr()用於從字符串中提取子字符串,從指定位置開始並包含指定數量的字符。

用法:

string.substr(startIndex, length)
  • string:要從中提取子字符串的字符串。
  • startIndex:開始提取字符的索引。如果為負數,則被視為(string.length + startIndex).
  • length(可選):要提取的字符數。如果省略,則所有字符來自startIndex到字符串末尾的部分都包含在子字符串中。

例子:在這裏,substr()方法被調用str字符串與startIndex7length5。這會提取從索引處的字符開始的子字符串7(即“W”)並包含5此後的字符。結果子串是"World".

Javascript


const str = "Hello, World!";
const substring = str.substr(7, 5);
console.log(substring); // Output: "World"
輸出
World

相關用法


注:本文由純淨天空篩選整理自amanv09大神的英文原創作品 What is substr() Method in JavaScript ?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。