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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。