此方法返回从指定位置开始到指定字符数的字符串中的字符。
用法
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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。