Open In App

Scala String contentEquals() method with example

Improve
Improve
Like Article
Like
Save
Share
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 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


Last Updated : 03 Oct, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads