如何通过给定的电话号码获取联系人(可能是部分)
我正在开发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过 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.