Tests if the specified array of strings contains the specified string ignoring case.

Parameters:

strings

An array of strings to be searched.

When an element of the array is not a String object, it is converted to a string by calling element.toString().

If an element is null, it will be treated as empty string.

If this parameter is null, the function does nothing and return false.

str
The string to look for.

Returns:

true, if the string has been found; false otherwise

See Also:

contains(Object[] array, Object elem)