當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Typescript String charCodeAt()用法及代碼示例


charCodeAt()是TypeScript中的內置函數,用於返回指示指定索引處字符的Unicode值的數字。句法:

string.charCodeAt(index);

參數:該方法接受上麵提到和下麵描述的單個參數。

  • index 此參數是小於字符串長度的0到1之間的整數。

返回值:此方法返回數字,該數字指示給定索引處字符的Unicode值。

下麵的示例說明TypeScriptJS中的String charCodeAt()方法:

範例1:



的JavaScript

var str = new String("JavaScript is object oriented language"); 
  
// Finding number indicating the Unicode value 
// of the character at the given index 
var value = str.charCodeAt(14); 
console.log(value);

輸出:

111

範例2:

的JavaScript

var str = new String('JavaScript is object oriented language');  
  
// Finding number indicating the Unicode value 
// of the character at the given index 
console.log("Character at 0 is:" + str.charCodeAt(0));  
console.log("Character at 1 is:" + str.charCodeAt(1));

輸出:

Character at 0 is:74
Character at 1 is:97

相關用法


注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 TypeScript | String charCodeAt() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。