Write a Java program to compare a given string to the specified string buffer.

Java Programming Language / String in java

2160

Program:

public class Exercise {

public static void main(String[] args) {

    String str1 = "example.com", str2 = "Example.com";
    StringBuffer strbuf = new StringBuffer(str1);

    System.out.println("Comparing "+str1+" and "+strbuf+": " + str1.contentEquals(strbuf));

    System.out.println("Comparing "+str2+" and "+strbuf+": " + str2.contentEquals(strbuf));

      }
}

Output:

Comparing example.com and example.com: true
Comparing Example.com and example.com: false
Press any key to continue . . .

Explanation:

None

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.