TypeScript - String charCodeAt() 方法
此方法返回一个数字,指示给定索引处字符的 Unicode 值。 Unicode 代码点范围从 0 到 1,114,111。 前 128 个 Unicode 代码点与 ASCII 字符编码直接匹配。 charCodeAt() 始终返回小于 65,536 的值。
语法
string.charCodeAt(index);
参数信息
index − 0 到 1 之间的整数,小于字符串的长度; 如果未指定,则默认为 0。
返回值
返回一个数字,指示给定索引处字符的 Unicode 值。 如果给定索引不在 0 到 1 之间且小于字符串长度,则返回 NaN。
示例
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