TypeScript 字符串substr()方法

2019-01-16 15:10 更新

TypeScript 字符串substr()方法

substr()方法返回从指定位置开始的字符串中的字符到指定的字符数。

语法

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
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号