Método Scala String regionMatches(int toffset, String other, int offset, int len) con ejemplo

El método regionMatches(int toffset, String other, int offset, int len) se usa para verificar si dos regiones de strings son iguales o no. Sin embargo, aquí ignoreCase no está incluido.

Definición del método: Boolean regionMatches(int toffset, String other, int offset, int len)
Tipo de retorno: Devuelve verdadero si la región de dos strings coincide; de ​​lo contrario, devuelve falso.

Ejemplo 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)
      
    }
} 
Producción:

true

Ejemplo #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)
      
    }
} 
Producción:

false

Publicación traducida automáticamente

Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *