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


TypeScript String.fromCharCode()用法及代碼示例


fromCharCode() 是一個內置的TypeScript字符串方法。它主要將基本多語言平麵(BMP)內的Unicode代碼點轉換為字符串。盡管它提供了一種通過在鍵盤上鍵入來處理字符的方法,但它在處理 BMP 之外的字符時存在限製。

用法:

String.fromCharCode(...codePoints: number[]): string

參數:

  • codePoints: 要轉換為字符的一個或多個 Unicode 代碼點。

返回值:

一個字符串,其中包含其 Unicode 點作為方法內參數傳遞的字符。

示例 1:在此示例中,我們從 unicode 代碼點值創建一個字符串。

Javascript


let codeUnits: number[] =
    [
        71, 101, 101, 107, 115, 70,
        111, 114, 71, 101, 101, 107, 115
    ];
let geeksString: string = String
    .fromCharCode(...codeUnits);
console.log(geeksString);

輸出:

GeeksForGeeks

示例 2:在此示例中,我們從 unicode 代碼點值創建一個字符串。

Javascript


let codeUnits: number[] =
    [
        74, 111, 104, 110, 68, 111, 101
    ];
let name: string = 
    String.fromCharCode(...codeUnits);
console.log(name);

輸出:

JohnDoe

相關用法


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