| Author |
Compare Array with String
|
nani aman
Ranch Hand
Joined: Sep 22, 2004
Posts: 33
|
|
hi, i have a string and an array of character. String = "solve" Array = {r,e,s,o,l,v,e} how i can compare the string with the array to know that the string is in the array? thank you. :roll:
|
 |
Sonny Gill
Ranch Hand
Joined: Feb 02, 2002
Posts: 1211
|
|
|
I suggest that you have a look at the charAt method in java.lang.String class, and the String constructor that takes a character array as input.
|
 |
Rohan Kayan
Ranch Hand
Joined: Sep 17, 2004
Posts: 123
|
|
You can create a new String object with char[] in its constructor and then you can use public int compareTo(String anotherString)
|
SCWCD 1.4, SCJP 1.4
|
 |
 |
|
|
subject: Compare Array with String
|
|
|