hyphens are an issue in getting contact details with a partial phone number
问题 I have a function to get all contacts with part of a phone number, here... Cursor c = getContentResolver().query(Data.CONTENT_URI, new String[] {Data._ID, Phone.NUMBER}, Phone.NUMBER + " like ?", new String[] {"%"+String.valueOf(phoneNumber) +"%"}, null); while (c.moveToNext()) { String id = c.getString(0); String number = c.getString(1); Log.d("id",id); Log.d("number",number); } but the problem is - IF i insert 31221 I can't get contacts with a phone number like 312-2131-321 Because of "-"