Below is what I have in my Array...
myArray = {"about","name","dsafasdf","fix"};
I want to find what are English words in this array.
Below should be output:
Words found are as below
about
name
fix
Thanks in advance!!!
Any example or link would work!!!
Actually I want to implement TextTwist Game. I have found possible words, however I would like to check whether the String found is WORD/ Grammar or not...
Update 1
Please don't advice me to create a file and put words in it and then search word in this file... It will be the WORSTEN program....