TypeScriptstring normalize() 是 Typescript 中的内置方法,如果传递字符串,此方法用于返回 Unicode 规范化形式。如果用户输入最初不是字符串,它将首先转换为字符串,然后应用所需的方法。
用法
string.normalize(form: string): string
参数:
form: 以下是不同的 Unicode 规范化形式:
- 近场通讯:规范化形式规范组合。
- 非处方药:规范化形式规范分解。
- NFKC:规范化形式兼容性组合。
- NFKD:规范化形式兼容性分解。
返回值:
返回包含表单(即输入值)的 Unicode 规范化形式的字符串。
示例 1:演示 TypeScript 中 normalize() 方法的基本用法。
Javascript
let str: string = "Geeks For Geeks";
let str1: string = str.normalize('NFC');
let str2: string = str.normalize('NFD');
let str3: string = str.normalize('NFKC');
let str4: string = str.normalize('NFKD');
console.log(str1, str2, str3, str4);
输出:
Geeks For Geeks Geeks For Geeks Geeks For Geeks Geeks For Geeks
示例 2:演示 TypeScript 中 normalize() 方法的基本用法。
Javascript
let str: string = "GeeksForGeeks";
let str1: string = str.normalize('NFC');
let str2: string = str.normalize('NFD');
let str3: string = str.normalize('NFKC');
let str4: string = str.normalize('NFKD');
console.log(str1);
console.log(str2);
console.log(str3);
console.log(str4);
输出:
GeeksForGeeks
GeeksForGeeks
GeeksForGeeks
GeeksForGeeks
相关用法
- 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 match()用法及代码示例
- TypeScript String matchAll()用法及代码示例
- TypeScript String padEnd()用法及代码示例
- TypeScript String.fromCharCode()用法及代码示例
- TypeScript String.raw()用法及代码示例
- TypeScript String转Boolean用法及代码示例
- TypeScript String转JSON用法及代码示例
注:本文由纯净天空筛选整理自pankajbind大神的英文原创作品 TypeScript String normalize() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。