package org.kodejava.example.lang; 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."); } } }
dimanche 6 mai 2012
How do I compare string regardless their case?
Here is an example of comparing two string for equality without considering their case sensitivity.
Inscription à :
Publier les commentaires (Atom)
Aucun commentaire:
Enregistrer un commentaire