Scala String regionMatches() method with example

The regionMatches() method is used to check if two string regions are equal or not. However, if ignoreCase is stated true in the argument list then the case difference is ignored.

Method Definition: Boolean regionMatches(boolean ignoreCase, 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 regionMatches()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying regionMatches method
        val result = "Preeti".regionMatches(false, 0, "Preeti", 0, 4)
          
        // Displays output
        println(result)
          
    }


Output:

true

Example #2:




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


Output:

true