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


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


split()是TypeScript中的內置函數,用於從指定位置開始通過指定數量的字符返回字符串中的字符。

用法:

string.substr(start[, length])

參數:此方法接受上麵提到和下麵描述的兩個參數:

  • start -此參數是開始提取字符的位置。
  • length -此參數是要提取的字符數。

返回值:此方法返回新的子字符串。
下麵的示例說明TypeScript中的String substr()方法。

範例1:



Javascript

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

輸出:

Geeks

範例2:

的JavaScript

<script> 
    // Original strings 
    var str = "Geeksforgeeks - Best Platform";  
  
    // use of String substr() Method 
    var newstr = str.substr(0,5)  
    console.log(newstr); 
  
    newstr = str.substr(-2,5)  
    console.log(newstr); 
  
    newstr = str.substr(12,22)  
    console.log(newstr); 
  
    newstr = str.substr(0,1)  
    console.log(newstr); 
</script>

輸出:

Geeks
rm
s - Best Platform
G

相關用法


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