slice()函数是Node.js的字符串函数,用于从字符串中提取子字符串。
用法:
string.slice( start, end )
参数:该函数使用上述和以下描述的威胁参数:
- string:它包含字符串内容。从该字符串中提取子字符串。
- start:此参数保存子字符串的起始索引。
- end:此参数保存结尾索引od子字符串。
返回类型:该函数返回子字符串。
下面的程序演示了该函数的工作:
程序1:
function findsubstr(str) {
var index = str.slice(12, 25);
console.log(index);
}
var str = "Welcome to GeeksforGeeks";
findsubstr(str);
输出:
GeeksforGeeks
程序2:
function findsubstr(str, start, end) {
var index = str.slice(start, end);
console.log(index);
}
var str = "Welcome to GeeksforGeeks";
var start = 0;
var end = 6;
findsubstr(str, start, end);
输出:
Welcome
相关用法
- Node.js GM charcoal()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- PHP Ds\Set slice()用法及代码示例
- PHP Ds\Sequence slice()用法及代码示例
- PHP Ds\Deque slice()用法及代码示例
- PHP Ds\Vector slice()用法及代码示例
注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 Node.js | slice() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。