compare two strings code example

Example 1: java how to compare strings

System.out.println("hey".equals("hey")); //prints true

/*
	always use .equals() instead of ==,
    because == does the compare the string content but
    loosely where the string is stored in.
*/

Example 2: how to check to string are qual r not

String str1 = "rohith";
String str2 = "nikhil";
//compares if str1(rohith) is equal to str2(nikhil)
System.out.println(str1.equals(str2));
//prints false as str1!=str2

Example 3: how to compare strings java

if (aName.equals(anotherName))
        { 
            System.out.println(aName + " equals " + anotherName);
        }
        else 
            { 
                System.out.println(aName + " does not equal " +anotherName );
                           
            }

Example 4: how to know if String is the same java

String1.equals(String2)

Example 5: compare string c++

int compare (const string& str) const;

Example 6: Java compare two strings

// compare two strings in java .equals() method
public class EqualOperatorDemo
{
   public static void main(String[] args)
   {
      String str1 = new String("helloworld");
      String str2 = new String("helloworld");
      System.out.println(str1 == str2);
      System.out.println(str1.equals(str2));
   }
}

Tags:

Cpp Example