Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have a string in java how can I determine which language it belongs to? Does Unicode specification allow us to do it?

share|improve this question
3  
Wow, do you mean you want to determine which language . belongs to ? Good luck :-) i hope you'll prefer an ordered list of "possible languages" – Riduidel Apr 7 '11 at 14:07

2 Answers

up vote 6 down vote accepted

I think you should check this question Language recognition in Java

Java Text Categorizing Library

share|improve this answer

There is no metadata in an Unicode string that specifies what language the string is in, if the string is even a word or phrase.

Based on the characters contained in the string, you may be able to guess what language is being used. For example, Unicode range 30A0–30FF represents Japanese Katakana characters. So if most of your string consists of characters within that range, you could make an educated guess that it's Japanese. This is not at all reliable, though. For instance, what if it's just random Katakana characters?

For reliable language detection, I would abandon all thought of using Unicode as a basis for language detection and focus on language recognition algorithms.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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