此方法返回從指定位置開始到指定字符數的字符串中的字符。
用法
string.substr(start[, length]);
參數詳細信息
start- 開始提取字符的位置(0 到 1 之間的整數,小於字符串的長度)。
length- 要提取的字符數。
注意− 如果 start 為負,則 substr 將其用作從字符串末尾開始的字符索引。
返回值
substr() 方法根據給定的參數返回新的子字符串。
示例
var str = "Apples are round, and apples are juicy.";
console.log("(1,2):" + str.substr(1,2));
console.log("(-2,2):" + str.substr(-2,2));
console.log("(1):" + str.substr(1));
console.log("(-20, 2):" + str.substr(-20,2));
console.log("(20, 2):" + str.substr(20,2));
在編譯時,它將在 JavaScript 中生成相同的代碼。
其輸出如下 -
(1,2):pp (-2,2):y. (1):pples are round, and apples are juicy. (-20, 2):nd (20, 2):d
相關用法
- TypeScript String substring()用法及代碼示例
- TypeScript String slice()用法及代碼示例
- TypeScript String split()用法及代碼示例
- TypeScript String search()用法及代碼示例
- TypeScript String concat()用法及代碼示例
- TypeScript String charCodeAt()用法及代碼示例
- TypeScript String indexOf()用法及代碼示例
- TypeScript String replace()用法及代碼示例
- TypeScript String localeCompare()用法及代碼示例
- TypeScript String charAt()用法及代碼示例
- TypeScript String lastIndexOf()用法及代碼示例
- TypeScript Array forEach()用法及代碼示例
- TypeScript Array map()用法及代碼示例
注:本文由純淨天空篩選整理自 TypeScript - String substr()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。