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


Scala String substring(int beginIndex, int endIndex)用法及代码示例


substring(int beginIndex,int endIndex)方法用于从声明的String中查找子字符串,该子字符串以指定的索引开头和结尾。

函数定义: String substring(int beginIndex, int endIndex)

返回类型: It returns string which is the part of the stated String.



注意:它与sub-sequence方法相同,但两者之间的唯一区别是sub-sequence返回CharSequence,但上述方法返回字符串。

示例:1#

// Scala program of substring() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Applying substring method 
        val result = "GeeksforGeeks".substring(4, 8) 
          
        // Displays output 
        println(result) 
      
    } 
} 
输出:
sfor

示例:2#

// Scala program of substring() 
// method 
  
// Creating object 
object GfG 
{  
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Applying substring method 
        val result = "GeeksforGeeks".substring(0, 4) 
          
        // Displays output 
        println(result) 
      
    } 
} 
输出:
Geek


相关用法


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