Here is an example of comparing two strings for equality without considering their case sensitivity. To do this we can use equalsIgnoreCase()
method of the String
class. Let’s see an example below:
package org.kodejava.basic;
public class EqualsIgnoreCase {
public static void main(String[] args) {
String uppercase = "ABCDEFGHI";
String mixed = "aBCdEFghI";
// To compare two string equality regarding it case use the
// String.equalsIgnoreCase method.
if (uppercase.equalsIgnoreCase(mixed)) {
System.out.println("Uppercase and Mixed equals.");
}
}
}
Latest posts by Wayan (see all)
- How do I build simple search page using ZK and Spring Boot? - March 8, 2023
- How do I calculate days between two dates excluding weekends and holidays? - January 12, 2023
- How do I discover the quarter of a given date? - January 11, 2023