Write a Java program to compare a given string to the specified string buffer.
Java Programming Language String in java (Article) String in java (Program)
2133Program:
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:
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.