如何写精华回答,获更多曝光?
发布
示例字符串,包括普通字符和多字节 Unicode 字符 let testString: string = '\ud83d\udcda书上说,夏至是——哈哈\ud83c\udf49';
将字符串转换为字符数组 const charArray: string[] = Array.from(testString);
获取数组的最后一个字符 const lastChar: string | undefined = charArray.pop(); console.log(lastChar); 上述代码获取的lastChar是乱码,如何才能获取到多字节 Unicode 字符