gpt4 book ai didi

javascript - javascript中的Unicode组合

转载 作者:行者123 更新时间:2023-11-29 20:28:15 25 4
gpt4 key购买 nike

我正在寻找一种方法,在向用户显示时将连字计为单个单位,例如https://www.compart.com/en/unicode/U+FEFB .

当键入此字符时(在阿拉伯语键盘上键入 G),它将以分解形式插入,即 U+0644 U+0627

我可以将 U+FEFB 分解为

escape(String.fromCodePoint(0xFEFB).normalize("NFKD")) // '%u0644%u0627'

有没有办法将 U+0644 U+0627 组合成 0xFEFB

为什么这行得通?

escape(String.fromCodePoint(0x0644, 0x0627).normalize("NFKC"))

我唯一的想法是迭代我感兴趣的 unicode 范围,分解并创建一个映射,但我希望有更好的方法。

最佳答案

鉴于the ES2019 spec要求实现:

Let ns be the String value that is the result of normalizing S into the normalization form named by f as specified in https://unicode.org/reports/tr15/.

鉴于https://www.unicode.org/Public/12.1.0/ucd/NormalizationTest.txt将该 Angular 色描述为

FEFB;FEFB;FEFB;0644 0627;0644 0627; # (ﻻ; ﻻ; ﻻ; لا; لا; ) ARABIC LIGATURE LAM WITH ALEF ISOLATED FORM

这是合规行为。见

# 1. The following invariants must be true for all conformant implementations
#
# NFC
# c2 == toNFC(c1) == toNFC(c2) == toNFC(c3)
# c4 == toNFC(c4) == toNFC(c5)
#
# NFD
# c3 == toNFD(c1) == toNFD(c2) == toNFD(c3)
# c5 == toNFD(c4) == toNFD(c5)
#
# NFKC
# c4 == toNFKC(c1) == toNFKC(c2) == toNFKC(c3) == toNFKC(c4) == toNFKC(c5)
#
# NFKD
# c5 == toNFKD(c1) == toNFKD(c2) == toNFKD(c3) == toNFKD(c4) == toNFKD(c5)

没有规范化将 c4c5 形式转换回 c1,或 c2,或 c3.

所以在我的 unicode 业余爱好者看来,没有符合标准的方法可以将 U+0644 U+0627 规范化回 U+FEFB

关于javascript - javascript中的Unicode组合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58866479/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com