安卓< 2.3 与java.text.Normalizer

发布于 2024-11-15 01:25:47 字数 297 浏览 2 评论 0 原文

在 2.3 之前的 Android 版本中,java.text.Normalizer 的最佳替代品是什么? http://developer.android.com/reference/java/text/Normalizer.html

我需要匹配字符串,比如

perché perchè perche

谢谢

Nicola

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必你懂 2024-11-22 01:25:47

我有两个解决方案:

1.) 从 此处获取 Normalizer 的源代码此处。 (几千行)

2.) 自己构建一个简单的翻译HashMap。也许您在一段时间内只有法国用户?这是一个次优的解决方案,但在您的应用程序走向全球之前是实用的。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文