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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。