Nicely Format Phone Numbers in WP7
Join the DZone community and get the full member experience.
Join For FreeThis is a simple requirement: the user types in some string that should
be a phone number. You need to format that string to look nice and neat.
Assuming that we are in the United States where there are 10 digit
numbers and a country code of +1, here’s the solution:
In the code above we remove everything that is not a number. Then we strip the country code. Then we have to handle different lengths. Only lengths of 7 and 10 are truly valid. Greater than 10, we assume it is an extension and we format it as such.
Get the code here.
The output should look something like this:

I hope this helps you while you are developing. Best of luck!
Source: http://blog.jerrynixon.com/2011/12/format-phone-numbers.html

In the code above we remove everything that is not a number. Then we strip the country code. Then we have to handle different lengths. Only lengths of 7 and 10 are truly valid. Greater than 10, we assume it is an extension and we format it as such.
Get the code here.
The output should look something like this:

I hope this helps you while you are developing. Best of luck!
Source: http://blog.jerrynixon.com/2011/12/format-phone-numbers.html
Opinions expressed by DZone contributors are their own.
Comments