当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Typescript String substring()用法及代码示例


substring()是TypeScript中的内置函数,用于返回String对象的子集。

句法:

string.substring(indexA, [indexB]) 

参数:该方法接受上面提到的两个参数,并在下面描述:

  • indexA:此参数是0到1之间的整数,小于字符串的长度。
  • indexB:此参数是0到字符串长度之间的整数。

返回值:此方法返回String对象的子集。
下面的示例说明TypeScript中的String substring()方法。

范例1:



的JavaScript

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

输出:

Geeks

范例2:

的JavaScript

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

输出:

Geeks
Geeks
s - Best P
G




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 TypeScript | String substring() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。