Scala String equalsIgnoreCase() method with example
The equalsIgnoreCase() method is utilized to check if the stated string and object are equal by ignoring the case difference.
Method Definition: Boolean equalsIgnoreCase(String anotherString)
Return Type: It returns true if the string is same as the object stated by ignoring the case difference, else it returns false.
Example #1:
// Scala program of equalsIgnoreCase() // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Creating an array val m 1 = Array( 'N' , 'i' , 'd' , 'h' , 'i' ) // Applying equalsIgnoreCase() method val result = "Nidhi" .equalsIgnoreCase( "Nidhi" ) // Displays output println(result) } } |
chevron_right
filter_none
Output:
true
Example #2:
// Scala program of equalsIgnoreCase() // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Creating an array val m 1 = Array( 'N' , 'i' , 'd' , 'h' , 'i' ) // Applying equalsIgnoreCase() method val result = "Nidhi" .equalsIgnoreCase( "nidhi" ) // Displays output println(result) } } |
chevron_right
filter_none
Output:
true