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


Typescript String slice()用法及代碼示例


slice() 是 TypeScript 中的一個內置函數,用於提取字符串的一部分並返回一個新字符串。句法:

string.slice( beginslice [, endSlice] )

參數:該方法接受上麵提到的兩個參數,如下所述:

  • beginSlice - 此參數是從零開始提取的索引。
  • endSlice - 此參數是結束提取的從零開始的索引。

返回值:此方法返回字符串內的正則表達式的索引。否則,它返回-1。

下麵的示例說明了 TypeScriptJS 中的 String slice() 方法:

範例1:



的JavaScript


<script>
    // Original strings
    var str = "Geeksforgeeks - Best Platform"; 
  
    // use of String slice() Method
    var newstr = str.slice(0,14); 
  
    console.log(newstr);
</script>

輸出:

Geeksforgeeks

範例2:

的JavaScript


<script>
    // Original strings
    var str = "Geeksforgeeks - Best Platform"; 
  
    // use of String slice() Method
    var newstr = str.slice(16); 
  
    console.log(newstr);
</script>

輸出:

Best Platform

相關用法


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