

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to initialize and compare strings?
<p style="">Following example compares two strings by using str compareTo (string), str compareToIgnoreCase(String) and str compareTo(object string) of string class and returns the ascii difference of first odd characters of compared strings.</p><h3>Example</h3><p><a class="demo" href="http://tpcg.io/6hecJn" rel="nofollow" target="_blank"> Live Demo</a></p><pre class="prettyprint notranslate" style="">public class StringCompareEmp{ public static void main(String args[]) { String str = "Hello World"; String anotherString = "hello world"; Object objStr = str; System.out.println( str.compareTo(anotherString) ); System.out.println( str.compareToIgnoreCase(anotherString) ); System.out.println( str.compareTo(objStr.toString())); } }</pre><h3>Output</h3><p>The above code sample will produce the following result.</p><pre class="result notranslate">-32 0 0</pre><h2>String compare by equals()</h2><p>This method compares this string to the specified object. The result is true if and only if the argument is not null and is a String object that represents the same sequence of characters as this object.</p><h3>Example</h3><p><a class="demo" href="http://tpcg.io/IRTckh" rel="nofollow" target="_blank"> Live Demo</a></p><pre class="prettyprint notranslate" style="">public class StringCompareequl{ public static void main(String []args) { String s1 = "tutorialspoint"; String s2 = "tutorialspoint"; String s3 = new String ("Tutorials Point"); System.out.println(s1.equals(s2)); System.out.println(s2.equals(s3)); } }</pre><h3>Output</h3><p>The above code sample will produce the following result.</p><pre class="result notranslate">true false</pre><h2>String compare by == operator</h2><h3>Example</h3><p><a class="demo" href="http://tpcg.io/G4phVc" rel="nofollow" target="_blank"> Live Demo</a></p><pre class="prettyprint notranslate" style="">public class StringCompareequl{ public static void main(String []args) { String s1 = "tutorialspoint"; String s2 = "tutorialspoint"; String s3 = new String ("Tutorials Point"); System.out.println(s1 == s2); System.out.println(s2 == s3); } }</pre><h3>Output</h3><p>The above code sample will produce the following result.</p><pre class="result notranslate">true false</pre>
- Related Questions & Answers
- How to Initialize and Compare Strings in C#?
- How to Initialize and Compare Strings in Java?
- How to declare and initialize constant strings in C#?
- How to compare strings in Java?
- How to compare date strings in Python?
- How to compare two strings in Golang?
- Java Program to Compare Strings
- Compare Strings in Arduino
- Java Program to Compare Two Strings
- How do I compare strings in Java?
- How to compare two strings using regex in Python?
- Compare date strings in MySQL
- Compare two Strings in Java
- Java Program to compare strings for equality
- Program to Compare two strings in Java
Advertisements