VBA:Unicode 到 ASCII 的转换?
我有一个 unicode 格式的字符串,我想将其转换为 ASCII 格式。如果字符不在 ASCII 范围内,则应将其转换为最接近的英文字母。例如“Ǎǎǵǩşşşşş”到“Aagkzro”。
I have a string that is in unicode format that I want to convert to ASCII format. If the character is not in the ASCII range, then it should be converted to the closest English letter. For example "Ǎǎǵǩȥȑȍ" to "Aagkzro".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速进行网络搜索后,找到了以下链接 这部分适用于您的示例。
但是,有些代码 (ǵ) 只会返回问号。在这些情况下,您需要专门检查该值并将其转换为您期望的值。
A quick web search pulled up the following link which partially works for you example.
However, there are codes (ǵ) which will just return a question mark. In these cases, you will want to check for that value specifically and convert it to what you're expecting.