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.
Scala
Scala
Method Definition: CharSequence subSequence(int beginIndex, int endIndex) Return Type: It returns the resultant sub-sequence.Example: 1#
// 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:
Example: 2#
for
// 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