Is it possible to check if a complete string or part of it is in an array?
I had to check a text input from a user to se if is inside an array, the array contains single words with possible answers. What I need to know is; if somebody for example type the "sky is blue" and the array contains "blue", I want it to recognize it even is there's more words in the given string that are not in the array.
If is possible what is the sintax?
Other question I have is about case-sensitive, from my understanding arrays are not case-sensitive until we say so.
Thanks!