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!
how can i detect the lang of the user input string? for exemple the string: בדיקה בלה בלה heb אחד שתיים שלוש will give the result: hebrew 10x! | |||
feedback
|
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.
|
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
| |||
|
feedback
|