當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js slice()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 Node.js | slice() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。