0
How to compare two string characters in java using if else statement
Help....j
4 Antworten
+ 1
string1.equals(string2)
or
string1.equalsIgnoreCase(string2)
avoid comparing "string1" == "string2" with operators
+ 1
Thanx to everyone guys.....really it helped me a lot...thanx...
0
Can you give me an example?