Open In App

Scala String contentEquals() method with example

Last Updated : 03 Oct, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
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
// 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
// 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

Similar Reads