Answers for "how to check whether two strings are equal or not in java"

1

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));
   }
}
Posted by: Guest on December-08-2020

Code answers related to "how to check whether two strings are equal or not in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language