如何通过给定的电话号码获取联系人(可能是部分)

发布于 2024-10-27 22:34:15 字数 308 浏览 2 评论 0原文

我正在开发 Android 2.2,对于给定的号码,我试图获取具有该号码的所有联系人。

给定的号码可能是联系人的部分电话号码,而不是完整的电话号码。

例如,如果我有两个联系人:

  • A 电话号码:123456
  • B 电话号码:456789

当输入为 456 时,查询应返回他们两个。

我尝试在选择上使用 LIKE 运算符,但问题是数字在 Android 中以格式存储(用“-”分隔)。

有没有办法获取未格式化的电话号码?或者有没有办法告诉查询比较数字但忽略“-”?

I am working on Android 2.2, and with a given number I am trying to get all the contacts which have this number.

The given number could be partial and not the full phone number of a contact.

For example if i have two contacts:

  • A with phone number: 123456
  • B with phone number: 456789

when the input is 456 the query should return both of them.

I tried to use the LIKE operator on the selection, but the problem is that the numbers are stored formatted in Android (separated with '-').

Is there anyway to get unformatted phone numbers? Or is there a way to tell the query to compare the numbers but to ignore the '-'?

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

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

发布评论

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

评论(1

秉烛思 2024-11-03 22:34:15

您尝试过 REGEXP 运算符吗?在我的脑海中,像 .*1\D*2\D*3.* 这样的东西会匹配 123 以及其间任意数量的非数字字符。

Have you tried the REGEXP operator? Off the top of my head, something like .*1\D*2\D*3.* would match 123 with any number of non-digit characters in between.

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