JavaSacript中charCodeAt()方法的使用详解
程序员文章站
2022-06-07 15:34:41
该方法返回一个数字,表示给定索引处的字符的unicode值。
unicode码点范围为0到1114111。前128个unicode码点的ascii字符编码的直...
该方法返回一个数字,表示给定索引处的字符的unicode值。
unicode码点范围为0到1114111。前128个unicode码点的ascii字符编码的直接匹配。charcodeat()将始终返回一个值小于65,536。
语法
string.charcodeat(index);
下面是参数的详细信息:
- index: 0和1之间小于字符串的长度的整数; 如果未指定,默认为0。
返回值:
返回一个数字,表示给定索引处的字符的unicode值。如果给定的索引不是0和1之间的长度,返回nan。
例子:
<html> <head> <title>javascript string charcodeat() method</title> </head> <body> <script type="text/javascript"> var str = new string( "this is string" ); document.write("str.charcodeat(0) is:" + str.charcodeat(0)); document.write("<br />str.charcodeat(1) is:" + str.charcodeat(1)); document.write("<br />str.charcodeat(2) is:" + str.charcodeat(2)); document.write("<br />str.charcodeat(3) is:" + str.charcodeat(3)); document.write("<br />str.charcodeat(4) is:" + str.charcodeat(4)); document.write("<br />str.charcodeat(5) is:" + str.charcodeat(5)); </script> </body> </html>
这将产生以下结果:
str.charcodeat(0) is:84 str.charcodeat(1) is:104 str.charcodeat(2) is:105 str.charcodeat(3) is:115 str.charcodeat(4) is:32 str.charcodeat(5) is:105
推荐阅读
-
深入SQLServer中ISNULL与NULLIF的使用详解
-
Java中的OneToMany的使用方法
-
Android编程实现全局获取Context及使用Intent传递对象的方法详解
-
Android编程中光线传感器的调用方法详解
-
Android 布局中的android:onClick的使用方法总结
-
iOS App使用设计模式中的模板方法模式开发的示例
-
android UI进阶之android中隐藏的layout 抽屉的使用方法
-
Android中ViewFlipper的使用及设置动画效果实例详解
-
详解iOS App开发中改变UIButton内部控件的基本方法
-
详解Objective-C编程中对设计模式中适的配器模式的使用