js全角字符转为半角字符
程序员文章站
2023-02-20 22:52:11
全角字符和半角字符是不同的 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?!/#@
上一篇: 安装nvm管理不同的node版本
下一篇: canvas动画效果新年祝福话语