android < 2.3 and java.text.Normalizer

荒凉一梦 提交于 2019-12-19 17:31:04

问题


What's the best alternative to to java.text.Normalizer in android versions previous than 2.3? http://developer.android.com/reference/java/text/Normalizer.html

I need to match Strings like

perché perchè perche

thanks

Nicola


回答1:


I have two solutions:

1.) Get the source for Normalizer from here and here. (it's a few thousand lines)

2.) Build a simple translation HashMap yourself. Maybe your will have just French users for some time? This is a suboptimal solution but practical until your app goes worldwide.



来源:https://stackoverflow.com/questions/6328654/android-2-3-and-java-text-normalizer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!