HI I want to check one string value with an array of strings. I am using the contains()
method, but it is case sensitive. For example:
String str="one";
String [] items= {"ONE","TWO","THREE"};
str.contains(items); // it is returning false.
Now the question is how to check that string ?
can anyone help me?
thanks in advance