I have a string and a list of strings. I want to know if the list contains the string by ignoring the case.
Example:"Google","GOOGLE","GOoGLe","GooglE" should be treated as equal
Please provide the code snippet?
|
I have a string and a list of strings. I want to know if the list contains the string by ignoring the case. Example:"Google","GOOGLE","GOoGLe","GooglE" should be treated as equal Please provide the code snippet? |
|||||||||||||||||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Have a look at From the Javadoc:
|
|||
|
|
|
Use an If you don't know what either is then you probably need to study Java a bit more. |
|||||
|
|
|
You could create own list implementation for that. The |
|||
|
|