Possible Duplicate:
detect language from string in PHP

how can i detect the lang of the user input string?

for exemple the string:

בדיקה בלה בלה heb אחד שתיים שלוש

will give the result: hebrew

10x!

link|improve this question
possible duplicate: stackoverflow.com/questions/1441562/… – Binyamin Sharet Apr 2 '11 at 11:29
feedback

closed as exact duplicate by Bill the Lizard Apr 2 '11 at 12:30

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

The easiest way would be to compare the string with a database of dictionaries, and depending on which dictionary the word is contained within, you can find the language.

However, caveats

  • some words will appear in many languages
  • Getting hold of all dictionaries for all the languages you wish to support may not be easy.
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.