拉丁字母到英文字母哈希
我必须将所有拉丁字符转换为相应的英文字母。我可以使用 Python 来做吗?或者有没有可用的映射?
非 Unicode 字符
Ramírez Sánchez
的 Unicode 值应转换为 Ramirez Sanchez
。
I have to convert all the latin characters to their corresponding English alphabets. Can I use Python to do it? Or is there a mapping available?
Unicode values to non-unicode characters
Ramírez Sánchez
should be converted to Ramirez Sanchez
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来您想要的是消除口音。您可以通过以下方式执行此操作:
这对于西班牙语来说效果很好,但请注意,它并不总是适用于其他语言。
It looks like what you want is accent removal. You can do this with:
This works fine for Spanish, but note that it doesn't always work for other languages.