You could create an array of all the characters you would like to search for then search the string character by character for any of the listed characters.
You could use an English dictionary list of words and see if the words in your string are in the list.
-
Peter