Answers for "two strings equal java"

2

Java Compare two strings if they are equal

String myStr1 = "Hello";
String myStr2 = "Hello";
String myStr3 = "Another String";
System.out.println(myStr1.equals(myStr2)); // Returns true because they are equal
System.out.println(myStr1.equals(myStr3)); // false
Posted by: Guest on September-04-2021
0

in java how to compare two strings

class scratch{
    public static void main(String[] args) {
        String str1 = "Nyello";
        String str2 = "Hello";
        String str3 = "Hello";

        System.out.println( str1.equals(str2) ); //prints false
        System.out.println( str2.equals(str3) ); //prints true
    }
}
Posted by: Guest on January-08-2020
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 "two strings equal java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language