Write a Java program to compare a given string to the specified character sequence.
Java Programming Language / String in java
2748Program:
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:
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.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS