How do you compare two strings? any predefined method for
this?
Answers were Sorted based on User's Feedback
You can compare the values of 2 Strings by following
methods of String class:-
Eg:- String a="abc"; String b="abc";
1> .equals() method it will return a boolean value.
eg:- if(a.equals(b)) will return true.
2> .compareTo() method.If the two java strings are exactly
the same, the compareTo method will return a value of 0
(zero).
eg:- if (a.compareTo(b) == 0){
// this line will print
System.out.println("a and b strings are the same.")
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Where we write javascript code in html page?
What is object in java?
What data type is true or false?
I have 100 records in a table with two rows. I need to display 10 records per page like Google Search. I need only the Logic(Pagination) in Pure Java. No JSP and all..Thanks in Advance...
how to create an applet
What is mysql driver class name?
What is difference between filereader and bufferedreader?
what is check p object in java
Are arrays immutable in java?
Does java support function overloading, pointers, structures, unions or linked lists?
y cant i declare method like public final static show()
what are the states associated in the thread? : Java thread