Monday 28 March 2016

Java Tutorial : Java String [equalsIgnoreCase(String anotherString) method]


Click here to watch in Youtube :
https://www.youtube.com/watch?v=ZzDE_yfi4Vo&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge
Java Tutorial : Java String [equalsIgnoreCase(String anotherString) method] 
EqualsIgnoreCaseDemo.java
/*
 * public boolean equalsIgnoreCase(String
 *                             anotherString)
 * 
 * Parameters: 
 * ---------- 
 * anotherString - The String to compare this String
 * against.
 * 
 * Returns: 
 * ------- 
 * true if the argument is not null and it
 * represents an equivalent String ignoring case;
 * false otherwise.
 */

public class EqualsIgnoreCaseDemo
{
    public static void main(String[] args)
    {

        boolean result = "welcome".equalsIgnoreCase("WELCOME");
        System.out
                .println("\"welcome\".equalsIgnoreCase(\"WELCOME\") = "
                        + result);

    }
}
Output
"welcome".equalsIgnoreCase("WELCOME") = true
Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/StringDemo_equalsIgnoreCaseDemo_App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/StringDemo_equalsIgnoreCaseDemo_App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/f763f2167329fa6e35d47d9d3a5195613480d629/BasicJava/StringDemo_equalsIgnoreCaseDemo_App/?at=master

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • No comments:

    Post a Comment