Open In App

Scala String subSequence() method with example

Last Updated : 23 Oct, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The subSequence() method is utilized to find the sub-sequence from the given String, And this sub-sequence starts and ends with the index we specify.
Method Definition: CharSequence subSequence(int beginIndex, int endIndex) Return Type: It returns the resultant sub-sequence.
Example: 1# Scala
// Scala program of subSequence()
// method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying subSequence method
        val result = "GeeksforGeeks".subSequence(5, 8)
        
        // Displays output
        println(result)
    
    }
} 
Output:
for
Example: 2# Scala
// Scala program of subSequence()
// method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying subSequence method
        val result = "GeeksforGeeks".subSequence(5, 13)
        
        // Displays output
        println(result)
    
    }
} 
Output:
forGeeks

Next Article

Similar Reads