欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js全角字符转为半角字符

程序员文章站 2022-05-17 15:41:00
全角字符和半角字符是不同的 abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ?!/#@ abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ?!/#@ ......
//全角转半角
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?!/#@