1. 程式人生 > >JS 判斷字元位元組長度

JS 判斷字元位元組長度

//獲得字元位元組長度
function getStrByteLen(str)
{
     if(str =='') {
         return true;
     } else {
         var out = str.replace(/[^/x00-/xff]/g,'**');
         //alert("out.length = " + out.length);
         if(out.length > 5) {
             alert("輸入字元長度過長");
             return false;
         }
         return true;
    }
}