将变音符号与等效的拉丁字母匹配
请问如何在 ActionScript 3 中匹配小写的 i
和 í
等变体?
编辑:上面只是一个例子,我有兴趣将所有变音符号和特殊字母与类似的拉丁字母等效项相匹配。
谢谢。
How can I match lower case i
and variants like í
for example in ActionScript 3, please?
EDIT: The above is just an example, I am interested in matching all diacritics and special letters in general with a similar Latin Alphabet equivalent.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,视觉上(也可能是听觉上)相似字符的数字字符值背后没有任何关系(据我所知)。因此,您需要在常规 26 个字符字母表和该字母表中每个字符的变音符号版本之间保留一个查找表。
Unfortunately there is no relation (that I know of) behind the numeric character values of visually (and possibly audibly) similar characters. Hence, you will need to keep a lookup table between the regular 26 character alphabet and the diacritic versions of each character from that alphabet.