此方法返回一个数字,指示给定索引处字符的 Unicode 值。 Unicode 代码点的范围从 0 到 1,114,111。前 128 个 Unicode 代码点是 ASCII 字符编码的直接匹配。 charCodeAt()always 返回一个小于 65,536 的值。
用法
string.charCodeAt(index);
参数详细信息
index∼’ 一个小于字符串长度的 0 到 1 之间的整数;如果未指定,则默认为 0。
返回值
返回一个数字,指示给定索引处字符的 Unicode 值。它返回NaN如果给定的索引不小于字符串长度的 0 到 1。
示例
var str = new String("This is string");
console.log("str.charAt(0) is:" + str.charCodeAt(0));
console.log("str.charAt(1) is:" + str.charCodeAt(1));
console.log("str.charAt(2) is:" + str.charCodeAt(2));
console.log("str.charAt(3) is:" + str.charCodeAt(3));
console.log("str.charAt(4) is:" + str.charCodeAt(4));
console.log("str.charAt(5) is:" + str.charCodeAt(5));
在编译时,它将在 JavaScript 中生成相同的代码。
其输出如下
str.charAt(0) is:84 str.charAt(1) is:104 str.charAt(2) is:105 str.charAt(3) is:115 str.charAt(4) is:32 str.charAt(5) is:105
相关用法
- TypeScript String charAt()用法及代码示例
- TypeScript String concat()用法及代码示例
- TypeScript String slice()用法及代码示例
- TypeScript String split()用法及代码示例
- TypeScript String search()用法及代码示例
- TypeScript String indexOf()用法及代码示例
- TypeScript String replace()用法及代码示例
- TypeScript String localeCompare()用法及代码示例
- TypeScript String substring()用法及代码示例
- TypeScript String lastIndexOf()用法及代码示例
- TypeScript String substr()用法及代码示例
- TypeScript Array forEach()用法及代码示例
- TypeScript Array map()用法及代码示例
注:本文由纯净天空筛选整理自 TypeScript - String charCodeAt()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。