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

字符与字符编码的相互转换

程序员文章站 2022-05-17 18:58:59
...
1.charCodeAt()与charAt()方法。

字符串与字符编码是可以互相转换的,如果你要把字符串转换为字符编码,你可以选择使用charCodeAt()方法,如下:

var str="NO do,no die,why you try";  
var theTencharcode=str.charCodeAt(0);  
console.log(theTencharcode);//结果为100;

其中,string是一个字符串,charCodeAt()方法的括号中是期望转换的字符的索引我们要取它的第10个字符'd'的编码,它的索引值从0开始故索引值为9,最后,打印结果100即是要转换的字符的编码;

如果你只是想选取字符,你可以使用charAt()方法,charAt()方法与charCodeAt()类似,还用上面的例子:

var str="NO do,no die,why you try";  
var theTencharcode=str.charAt(9)  
console.log(theTencharcode);结果为'd';

输出结果为我们要找的字符'd';

2.fromCharCode()方法

与charCodeAt()方法刚好相反,给它传送一组用逗号分割的、表示字符编码的数字,该方法就会把它们转换为一个字符串。如将字符串'love'保存在变量myHeart中:

var myHeart;  
myHeart=String.fromCharCode(108,111,118,101);  
console.log(myHeart);

fromCharCode()方法单独拿出来看不出有什么用,与变量一起使用的话是比较适用的,比如用来输出一个包含所有字母表中小写字母的字符串:

var base_char='';  
for(var charCode=97;charCode<=122; charCode++)  
{  
  
     base_char +=String.fromCharCode(charCode);  
  
}  
console.log(base_char);

另外,个人觉得上述方法用于加密,解密是也是比较适用的。