TypeScript 字符串charCodeAt()方法

2019-01-10 16:48 更新

TypeScript 字符串charCodeAt()方法

charCodeAt()方法返回一個數(shù)字,指示給定索引處字符的Unicode值。Unicode代碼點的范圍為0到1,114,111。前128個Unicode代碼點是ASCII字符編碼的直接匹配。charCodeAt()始終返回小于65,536的值。

語法

string.charCodeAt(index);

參數(shù)詳情

index - 小于字符串長度的0到1之間的整數(shù);如果未指定,則默認為0。

返回值

返回一個數(shù)字,指示給定索引處字符的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
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號