js全形字元轉為半形字元

html55發表於2019-01-21
//全形轉半形
function CtoH(str){ 
 var result="";
 for (var i = 0; i < str.length; i++){
  if (str.charCodeAt(i)==12288){
   result+= String.fromCharCode(str.charCodeAt(i)-12256);
   continue;
  }
  if (str.charCodeAt(i)>65280 && str.charCodeAt(i)<65375) result+= String.fromCharCode(str.charCodeAt(i)-65248);
  else result+= String.fromCharCode(str.charCodeAt(i));
 }
 return result;
}

全形字元和半形字元是不同的

abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ?!/#@

abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ?!/#@

 

相關文章