I want to have different process for English word and Japanese word in this function
function process_word($word) {
if($word is english) {
/////////
}else if($word is japanese) {
////////
}
}
thank you
feedback
|
|
A quick solution that doesn't need the
Or a modification of the solution provided by @Alexander Konstantinov:
| |||||||||||||
feedback
|
|
This function checks whether a word contains at least one Japanese letter (I found unicode range for Japanese letters in Wikipedia).
| |||
|
feedback
|
|
You could try Google's Translation API that has a detection function: http://code.google.com/apis/language/translate/v2/using_rest.html#detect-language | ||||
|
feedback
|
|
Try with mb_detect_encoding function, if encoding is EUC-JP or UTF-8 / UTF-16 it can be japanese, otherwise english. The better is if you can ensure which encoding each language, as UTF encodings can be used for many languages | |||
|
feedback
|
|
English text usually consists only of ASCII characters (or better say, characters in ASCII range). | |||||
feedback
|
|
You can try to convert the charset and check if it succeeds. Take a look at iconv: http://www.php.net/manual/en/function.iconv.php If you can convert a string to ISO-8859-1 it might be english, if you can convert to iso-2022-jp it is propably japanese (I might be wrong for the exact charsets, you should google for them). | |||
|
feedback
|