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
相關用法
- TypeScript String.raw()用法及代碼示例
- TypeScript String charAt()用法及代碼示例
- TypeScript String charCodeAt()用法及代碼示例
- TypeScript String concat()用法及代碼示例
- TypeScript String indexOf()用法及代碼示例
- TypeScript String lastIndexOf()用法及代碼示例
- TypeScript String localeCompare()用法及代碼示例
- TypeScript String replace()用法及代碼示例
- TypeScript String search()用法及代碼示例
- TypeScript String slice()用法及代碼示例
- TypeScript String split()用法及代碼示例
- TypeScript String substr()用法及代碼示例
- TypeScript String substring()用法及代碼示例
- TypeScript String includes()用法及代碼示例
- TypeScript String codePointAt()用法及代碼示例
- TypeScript String repeat()用法及代碼示例
- TypeScript String endsWith()用法及代碼示例
- TypeScript String trim()用法及代碼示例
- TypeScript String padStart()用法及代碼示例
- TypeScript String normalize()用法及代碼示例
- TypeScript String match()用法及代碼示例
- TypeScript String matchAll()用法及代碼示例
- TypeScript String padEnd()用法及代碼示例
- TypeScript String轉Boolean用法及代碼示例
- TypeScript String轉JSON用法及代碼示例
注:本文由純淨天空篩選整理自pankajbind大神的英文原創作品 TypeScript String.fromCharCode() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。