Open In App

Scala String regionMatches(int toffset, String other, int offset, int len) method with example

Last Updated : 03 Oct, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The regionMatches(int toffset, String other, int offset, int len) method is used to check if two string regions are equal or not. However, here ignoreCase is not included.

Method Definition:Boolean regionMatches(int toffset, String other, int offset, int len)
Return Type: It returns true if two string region matches else it returns false.

Example #1:




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


Output:

true

Example #2:




// Scala program of int regionMatches()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying regionMatches method
        val result = "Preeti".regionMatches(0, "pReeti", 0, 4)
          
        // Displays output
        println(result)
      
    }


Output:

false


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads