All pastes #656795 Raw Edit

Anonymous

public text v1 · immutable
#656795 ·published 2007-08-14 12:20 UTC
rendered paste body
function identify_kanji (k_string) {

        alert ("entro en la fucion");
        for (i=0; i<strlengh (k_string);i++) {
                if (k_string.charCodeAt(i)<=4E00) && (k_string.charCodeAt(i)>=F98E)) {
                        alert ("No kanji characters allowed");
                        return false;
                }
        }
        return true;
}