equals and equalsIgnoreCase in String java example

how to use equals and equalsIgnoreCase in String java example

public class Test {
        public static void main(String[] args) {       
            String st = new String("Test String Here");
            String st1 = new String("test string here");
           
            System.out.println(st.equals(st1));
            System.out.println(st.equalsIgnoreCase(st1));
           
        }
}

Comments

Recent Post

Recent Posts Widget

Popular posts from this blog

Capture image from webcam java code, examples

Use of req.query, req.params and req.body in NODE JS

How to capture finger prints in java