readind an urdu text file in c++

i am to read a urdu text file in c and want to search english words in it. can anybody help me out
what does "urdu" mean?
hannes: People are not Google.

adilsajjad: The best approach I can think of is getting a word list, of which there are a lot on the Internet, and reading the file word by word. If the word appears in the word list, it's considered an English word.
Since word lists can be quite large structures, you may want to use something better than linear search to match candidates with the list. Possibly a sorted array with binary search lookup, or a hashmap.
"URDU" is a language from out India/pakistan way.
Last edited on
Topic archived. No new replies allowed.