Open In App

Scala String contentEquals() method with example

The contentEquals() method is utilized to compare a string to the content of StringBuffer.

Method Definition: Boolean contentEquals(StringBuffer sb)
Return Type: It returns true if the content is equal to the stated string else it returns false.



Example #1:




// Scala program of contentEquals()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
        // Creating a StringBuffer
        val m1=new StringBuffer("Nidhi")
          
        // Applying contentEquals() method
        val result = "Nidhi".contentEquals(m1)
          
        // Displays output
        println(result)
      
    }

Output:
true

Example #2:




// Scala program of contentEquals()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
        // Creating a StringBuffer
        val m1=new StringBuffer("Nidhi")
          
        // Applying contentEquals() method
        val result = "nidhi".contentEquals(m1)
          
        // Displays output
        println(result)
      
    }

Output:

false

Article Tags :