在 JavaScript 中,String substr()用於從字符串中提取子字符串,從指定位置開始並包含指定數量的字符。
用法:
string.substr(startIndex, length)
string
:要從中提取子字符串的字符串。startIndex
:開始提取字符的索引。如果為負數,則被視為(string.length + startIndex)
.length
(可選):要提取的字符數。如果省略,則所有字符來自startIndex
到字符串末尾的部分都包含在子字符串中。
例子:在這裏,substr()
方法被調用str
字符串與startIndex
的7
和length
的5
。這會提取從索引處的字符開始的子字符串7
(即“W”)並包含5
此後的字符。結果子串是"World"
.
Javascript
const str = "Hello, World!";
const substring = str.substr(7, 5);
console.log(substring); // Output: "World"
輸出
World
相關用法
- JavaScript setInterval()用法及代碼示例
- JavaScript string.anchor()用法及代碼示例
- JavaScript string.replace()用法及代碼示例
- JavaScript startsWith()用法及代碼示例
- JavaScript setTimeout()用法及代碼示例
- JavaScript split()用法及代碼示例
- JavaScript Math cosh()用法及代碼示例
- JavaScript Math sinh()用法及代碼示例
- JavaScript Math sin()用法及代碼示例
- JavaScript Math cos()用法及代碼示例
- JavaScript Math tan()用法及代碼示例
- JavaScript Math abs()用法及代碼示例
- JavaScript Math pow()用法及代碼示例
- JavaScript Math asin()用法及代碼示例
- JavaScript Math acos()用法及代碼示例
- JavaScript Math atan()用法及代碼示例
- JavaScript Math ceil()用法及代碼示例
- JavaScript Math floor()用法及代碼示例
- JavaScript Math round()用法及代碼示例
- JavaScript Math trunc()用法及代碼示例
- JavaScript Math max()用法及代碼示例
- JavaScript Math min()用法及代碼示例
- JavaScript Math sqrt()用法及代碼示例
- JavaScript Math sign()用法及代碼示例
- JavaScript Math log()用法及代碼示例
注:本文由純淨天空篩選整理自amanv09大神的英文原創作品 What is substr() Method in JavaScript ?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。