I have a string when a telephone number is inputted - there is a mask so it always looks like "(123) 456-7890" - I'd like to take the formatting out before saving it to the DB.
How can I do that?
|
One possibility using linq is:
|
|||||||||||||||||
|
|
You can use a regular expression to remove all non-digit characters:
Then further on - depending on your requirements - you can either store the number as a string or as an integer. To convert the number to an integer type you will have the following options:
|
|||||||||||||
|
|
Since nobody did a for loop.
used like this:
|
|||||||||||||||||
|
|
You can make it work for that number with the addition of a simple regex replacement, but I'd look out for higher initial digits. For example, |
|||||||||||
|
|
||||
|
|
|
Aside from all of the other correct answers, storing phone numbers as integers or otherwise stripping out formatting might be a bad idea. Here are a couple considerations:
[EDIT] It might be a good idea to store both an integer version and a string version in the database. Also, when storing strings, you could reduce all punctuation to whitespace using one of the methods noted above. A regular expression for this might be:
|
||||
|
|
|
Try this:
You should be safe with this since the input is masked. |
|||||||||||||
|
|
You could use a regular expression or you could loop over each character and use char.IsNumber function. |
|||
|
|
|
You would be better off using regular expressions. An int by definition is just a number, but you desire the formatting characters to make it a phone number, which is a string. There are numerous posts about phone number validation, see http://stackoverflow.com/questions/123559/a-comprehensive-regex-for-phone-number-validation for starters. |
|||
|
|
As many answers already mention, you need to strip out the non-digit characters first before trying to parse the number. You can do this using a regular expression.
However, note that the largest positive value int can hold is 2,147,483,647 so any number with an area code greater than 214 would cause an overflow. You're better off using long in this situation. Leading zeros won't be a problem for North American numbers, as area codes cannot start with a zero or a one. |
|||
|
|
|
Alternative using Linq:
|
|||||
|
|
This is basically a special case of http://stackoverflow.com/questions/1329961/c-removing-common-invalid-characters-from-a-string-improve-this-algorithm/. Where your formatng incl. White space are treated as "bad characters" |
|||
|
|
|
||||
|
|
System.Int32.TryParseis not actually a C# question, as it was originally tagged. – AakashM Aug 20 '10 at 16:53int.Parseis part of the BCL, not C#. – Matt Greer Aug 20 '10 at 16:57[c#]and[.net]question. – Jon B Aug 20 '10 at 18:57