Tagged Questions
The phone-number tag has no wiki summary.
95
votes
25answers
98k views
A comprehensive regex for phone number validation
I'm trying to put together a comprehensive regex to validate phone numbers. Ideally it would handle international formats, but it must handle US formats, including the following:
1-234-567-8901
...
41
votes
7answers
16k views
How to mark-up phone numbers?
I want to mark up a phone number as callable link in an HTML document. I have read the microformats approach, and I know, that the tel: scheme would be standard, but is quite literally nowhere ...
12
votes
8answers
7k views
Remove all but numbers from NSString
I have an NSString (phone number) with some parenthesis and hyphens as some phone numbers are formatted. How would I remove all characters except numbers from the string?
8
votes
3answers
2k views
Phone number normalization: Any pre-existing libraries?
I have a system which is using phone numbers as unique identifiers. For this reason, I want to format all phone numbers as they come in using a normalized format. Because I have no control over my ...
7
votes
3answers
3k views
Phone number formatting
I have a text field where the user enters data. It's a phone number field. If the user enters 1234567890, I want it displayed as (123)-(456)-7890 as the user types. How is this possible?
7
votes
9answers
9k views
What is the best way for converting phone numbers into international format (E.164) using Java?
What is the best way for converting phone numbers into international format (E.164) using Java?
Given a 'phone number' and a country id (let's say an ISO country code), I would like to convert it ...
6
votes
14answers
2k views
US Phone Number Verification
I have a website form that requires a US phone number input for follow up purposes, and this is very necessary in this case. I want try to eliminate users entering junk data 330-000-0000. I have seen ...
5
votes
3answers
324 views
.NET Phone Number Parsing Library
Does anyone know of a generic phone number parsing library for .NET? Ideally I'm looking for something similiar to the Ruby Phone library.
5
votes
5answers
2k views
Is there pseudocode for UK address or phone number validation?
Do you have pseudocode for field validation of the following items in the UK? I am from the USA, so I only know the ones in the USA right now.
Address Line 1
Phone Number
Mobile Number (in case they ...
4
votes
1answer
1k views
phone number format for iPhone
I have to make calls programmatically in my iPhone app.
I have set of numbers in different countries with different formatting - braces, dots, spaces, "+" sign.
Can I simply remove all of this and ...
4
votes
8answers
232 views
Better to store phone in three fields or as one?
I am struggling with the decision to separate phone numbers stored in a MySQL database.
One school of thought is to break out the phone as:
area code (123)
prefix (123)
suffix (1234)
Another is ...
4
votes
5answers
2k views
Validating US phone number with php/regex
EDIT: I've mixed and modified two of the answers given below to form the full function which now does what I had wanted and then some... So I figured I'd post it here in case anyone else comes looking ...
4
votes
7answers
5k views
mysql datatype for telephone number and address
I want to input telephone number in a form, including country code, extension
create table if not exists employee( `
country_code_tel int(11),
tel_number int(10),
...
3
votes
2answers
43 views
use autocomplete textview with contacts phone number
I am having making my edittext field autocomplete for contacts phone numbers. I know how to get contacts from database and display them in text field but i need them to autocomplete just incase the ...
3
votes
2answers
149 views
Tell the iPhone this particular number is no phone number
this is probably a fairly easy question and I think it's more amusing than anything else, but I have a webView displaying a local HTML in which there is a ISBN number of a book, and the iPhone links ...
3
votes
1answer
783 views
Block outgoing SMS by contentObserver
I want to block SMS by contentObserver. For that I want to get the phone number of the SMS first. What do I do to get the number? This is the code that I have, just counting the number of SMS.
...
3
votes
4answers
421 views
Regular Expression for finding phone numbers [closed]
Possible Duplicates:
A comprehensive regex for phone number validation
grep with regex for phone number
Hello Everyone,
I am new to Stackoverflow and I have a quick question. Let's ...
3
votes
1answer
3k views
Remove dash from a phone number
What regular expression using java could be used to filter out dashes '-' and open close round brackets from a string representing phone numbers...
so that (234) 887-9999 should give 2348879999
and ...
3
votes
2answers
2k views
List of phone number country codes
On this Wikipedia entry I found out that ITU Telecommunication Standardization Sector (ITU-T) is providing such list of country calling codes.
Here is a pdf: ...
3
votes
4answers
3k views
any way to “ping” a phone number?
We have a customer who wants to go through their CRM database and somehow determine phone numbers which are valid, without actually having someone sit there and try calling them all.
Is there any ...
3
votes
7answers
1k views
Is there an all-countries phone number validator for Perl?
I am doing web development with Perl. I need to do phone number validation for all countries. Is there open source Perl module that can do the following?
For example: country = Malaysia, if user ...
3
votes
6answers
1k views
Converting a normalized phone number to a user-friendly version
In my C# application, I use a regular expression to validate the basic format of a US phone number to make sure that the user isn't just entering bogus data. Then, I strip out everything except ...
2
votes
1answer
59 views
How does Path app know my phone number in the registration process
I started using Path, and noticed that in the registration process, they identified both my phone number and my email.
As far as I know, there is no way to programmatically get those values (without ...
2
votes
2answers
181 views
how to get My phone number in Android 2.2
I'm programming Apps in Android 2.2.
I tried to get my phone number in Android but can't...
As below , this is my code for get phone number : ( device for Apps - SamSung Galaxy Plus )
public static ...
2
votes
1answer
391 views
How to get phone number in J2ME
How to get the phone number (not contact numbers,etc) in J2ME application?
The phone number that belongs to sim card in the phone...
2
votes
1answer
68 views
How to get iPhone phone number from a webapp?
Is it possible to get the phone number or a unique ID identifying the phone from a WebApp on the iphone?
2
votes
2answers
168 views
jQuery validation of NANP Phone numbers
I'm trying to validate my form. In my form is a phone number field. The user inserts a phone number and validation takes place as well as formatting. I've read a lot of the other similar questions in ...
2
votes
3answers
254 views
PHP - adding characters in middle of a string (starting from the end)
How do you add characters in middle of a string?
I'm trying to format a US number such as 2121231234 into one with dashes like so: 212-123-1234.
I don't know in advance how long the string of ...
2
votes
4answers
244 views
Is there a gem that normalizes and format US phone numbers in ruby?
I was using phony to format phone numbers (meaning, if I put in xxx-xxx-xxxx it would convert to a string, and also tell if there is a (1) before to remove it).
But it really doesn't work for us ...
2
votes
0answers
37 views
Strategies for canonicalizing phone numbers from users' address books?
This is a general problem but is affecting me particularly on Android and iPhone: given a user and a phone number, how can I canonicalize that phone number to be actually useful for storing and ...
2
votes
2answers
459 views
access the contact number of a contact
I am not able to access the contact number of a contact.
I got this code from internet
Intent intent = new Intent(Intent.ACTION_PICK);
...
2
votes
4answers
1k views
RegEx for valid international mobile phone number
I use Clickatell to send SMSes to clients' mobile phones.
Is there a standardised regular expression for all valid mobile phone numbers, e.g. +27 123 4567? I'd roll my own, but I'm worried about ...
2
votes
2answers
859 views
Automatically format phone number in EditText
In my app, the user has to enter a phone number in an EditText field using the following format:
1(515)555-5555
I don't want the user to type "(", ")", or "-" while entering the number; I want ...
2
votes
1answer
1k views
Does anyone know a regular expression to validate MSISDN-format mobile numbers?
Does anyone know a regular expression to validate MSISDN-format mobile numbers?
I looked into a solution posted at http://charlvn.blogspot.com/2010/06/msisdn-regular-expressions.html but I think ...
2
votes
2answers
58 views
Removing users' personal information from message posts in php
I have implemented a php/codeigniter messaging system and want to prevent users from posting their phone numbers, addresses, e-mails, websites or anything else that might allow for user contact ...
2
votes
2answers
459 views
Phone Number Regular Expression (Regex) in Python
Dive into python gives an amazing little tutorial on creating a regular expression for phone numbers (http://diveintopython.org/regular_expressions/phone_numbers.html)
The final version comes out to ...
2
votes
3answers
504 views
How to check if phone number entered by user includes country code?
Is there an easy way to check whether a phone number entered by the user includes country code and to validate that the number is correct? I don't use any specific formats, the number itself must be ...
2
votes
1answer
574 views
Dealing with international phone numbers on iPhone
I have an app which uses contact data in the following ways:
To send an SMS from the client
To send an SMS from our server
To upload a user's phone number to a database where others can match ...
2
votes
1answer
573 views
Detect iphone region
In my app, the user is supposed to insert a phone number, which is then displayed somewhere else.
In the contacts application, when displaying a phone number, it automatically appears in the format ...
2
votes
1answer
632 views
standardize international phone no. code using only regex
Sipdroid on Android has a search & replace method, that uses regex.
I'm trying to use it to make sure all outgoing calls has a country code in the format 00XX
I also want it to put 0045 in front ...
2
votes
1answer
264 views
how to geocode phone number
I have a list of phone numbers with area code prefixes that I want to find a latitude/longitude location for.
Is there a library (ideally Python) or service that can do this?
2
votes
5answers
529 views
Regular expression to match phone number?
I want to match a phone number that can have letters and an optional hyphen:
This is valid: 333-WELL
This is also valid: 4URGENT
In other words, there can be at most one hyphen but if there is no ...
2
votes
5answers
1k views
Phone numbers to links in Python
I'm working a piece of code to turn phone numbers into links for mobile phone - I've got it but it feels really dirty.
import re
from string import digits
PHONE_RE = ...
2
votes
1answer
763 views
Skype taking over urls
We have some issues in our application with skype taking over some of our urls, replacing them with a skype plug in that enables you to start calls. Looks like skype thinks they are phone numbers. I ...
2
votes
3answers
5k views
How do you store cell phone numbers in a database?
With the age of text messages and things like that, what's a good way to store phone numbers in a database?
In the USA, text messages are handled by phone numbers but in other countries I hear they ...
1
vote
2answers
43 views
How to get all contacts full name and phone number, only if they have a phone number?
I am trying to get all contacts that have a phone number, and record their full name and phone number, (and in the future, their contact photo), but I am stuck. here is my code:
String contacts = "";
...
1
vote
2answers
57 views
Get telephone number of device
I am making an app in which I have to get the mobile number of the GSM device and I used the following code to show to phone no in a TextView, but all in vain. Can anyone help me do this.
...
1
vote
1answer
128 views
getting friends Information in facebook using android
Hey Dude Below is my Request to facebook graph api which successfully give me Friend's(name,picture uri,locaion). But i need some more information about my friends like phone number,website,address.
...
1
vote
0answers
66 views
Can i get the user's friend's phone number using graph api?
I want to make facebook web apps using Graph API. I finished tutorial about Graph API, and I have a question.
My app must get the user's friend's phone number but in the user object, the phone number ...
1
vote
1answer
91 views
MonoTouch Way to get Own phone number and Sim Id(SSID)?
Im stuck to get own phone number and Sim ID (SSID) using Monotouch
I tryed:
var v = NSUserDefaults.StandardUserDefaults.ValueForKey((NSString)@"SBFormattedPhoneNumber");
var t = ...