Is there a way to detect the language of the data being entered via the input field?
feedback
|
|
hmm i may offer an improved version of DimaKrasun's function:
okay, enough joking! Pekkas suggestion to use the google translate api is a good one! but you are relying on an external service which is always more complicated etc. i think Rushyos approch is good! its just not that easy. i wrote the following function for you but its not tested, but it should work...
final thoughs: as you see i added for example a latin counter, the range is just a dummy number b ut this way you could detect charsets (hebrew, latin, arabic, hindi, chinese, etc...) you may also want to eliminate some chars first... maby @, space, line breaks, slashes etc... the PREG_SPLIT_NO_EMPTY flag for the preg_split function would be useful but bc of the bug i didnt use it here. you can as well have a counter for all teh character sets and see which one occourse the most... and finally you should consider chopping your string off after 200 chars or something. this hsould be enough to tell what character set is used. and you have to do some error handling! like devision by zero, empty string etc etc! dont forget that please... any questions? comment! if you want to detect the LANGUAGE of a string, you should split into words and check for the words in some pre defined tables. you don't need a complete dictionary, just the most common words and it should work fine. tokenization/normalization is a must as well! there are librarys for that anway and this is not what you asked for :) just wanted to mention it | |||||||||||||
feedback
|
|
I'm not aware of a PHP solution for this, no. The Google Translate Ajax APIs may be for you, though. Check out this Javascript snippet from the API docs: Example: Language Detection | |||||||||||||
feedback
|
|
I assume you're referring to a Unicode string... in which case, just look for the presence of any character with a code between U+0600–U+06FF (1536–1791) in the string. | |||||||
feedback
|
|
You can use function, which i have written for you:
But please, check it, before use. [EDIT 1] Your question: "How do I detect if an input string is Arabic?" And i have answered to it, what`s wrong? [EDIT 2] Read this - http://stackoverflow.com/questions/1441562/detect-language-from-string-in-php [EDIT 3] Excuse, i rewrite function to this, try it:
| |||||||||||||||
feedback
|