I have two strings, the first one contains an actual date, and the second one contains a date format.
I want to compare both the strings. Here is my code:
String s1 = "01/02/2012";
String s2 = "dd/MM/yyyy";
if (s1.equalsIgnoreCase(s2)){
System.out.println("true");}
else {
System.out.println("false");}
I have tried with all the string methods (like compare(), equalTo(), etc.). It's always executing the else part, i.e. the condition is always "false".
s1is in theDateFormatspecified ins2? – king14nyr Mar 1 '12 at 18:39DateFormatandSimpleDateFormat. – Dan S Mar 1 '12 at 18:39s1conforms to the date format described ins2? The code you have is testing to see if your two strings match each other exactly, which I hope you'll agree is impossible since one has numbers and the other has letters. – Argyle Mar 1 '12 at 18:41