从拉丁字符中删除重音符号(变音符号)以进行比较
我需要比较使用拉丁字母和某些字符上的重音符号(变音符号)书写的欧洲地名。有很多中欧和东欧的名字都用重音符号书写,例如 ž
和 ü
上的拉丁字符,但有些人只使用常规拉丁字符来书写名字重音符号,例如 z
和 u
。
我需要一种方法让我的系统识别例如 mšk žilina
与 msk zilina
相同,并且对于使用的所有其他重音字符类似。有没有一种简单的方法可以做到这一点?
I need to compare the names of European places that are written using the Latin alphabet with accent marks (diacritics) on some characters. There are lots of Central and Eastern European names that are written with accent marks like Latin characters on ž
and ü
, but some people write the names just using the regular Latin characters without accent marks like z
and u
.
I need a way to have my system recognize for example mšk žilina
being the same as msk zilina
, and similar for all the other accented characters used. Is there a simple way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
java.text。规范化器
和一个小正则表达式来摆脱变音符号。使用示例:
You can make use of
java.text.Normalizer
and a little regex to get rid of the diacritical marks.Usage example: