Write a Java program to compare a given string to the specified character sequence.
Java Programming Language String in java (Article) String in java (Program)
2691Program:
public class Exercise { public static void main(String[] args) { String str1 = "example.com", str2 = "Example.com"; CharSequence cs = "example.com"; System.out.println("Comparing "+str1+" and "+cs+": " + str1.contentEquals(cs)); System.out.println("Comparing "+str2+" and "+cs+": " + str2.contentEquals(cs)); } }
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.