up vote 18 down vote favorite
4
share [g+] share [fb]

I have a string "1112224444' it is a telephone number. I want to format as 111-222-4444 before I store it in a file. It is on a datarecord and I would prefer to be able to do this without assigning a new variable.

I was thinking:

String.Format("{0:###-###-####}", i["MyPhone"].ToString() );

but that does not seem to do the trick.

** UPDATE **

Ok. I went with this solution

Convert.ToInt64(i["Customer Phone"]).ToString("###-###-#### ####")

Now its gets messed up when the extension is less than 4 digits. It will fill in the numbers from the right. so

1112224444 333  becomes

11-221-244 3334

Any ideas?

link|improve this question

1  
Please be aware that not everywhere has 10-digit phone numbers, or uses the 111-222-4444 format. – Dour High Arch Sep 24 '10 at 22:22
This will fail with phone numbers starting with 0 – Evildonald Nov 17 '11 at 22:04
feedback

12 Answers

From a good page full of examples:

String.Format("{0:(###) ###-####}", 8005551212);

    This will output "(800) 555-1212".

Although a regex may work even better, keep in mind the old programming quote:

Some people, when confronted with a problem, think “I know, I’ll use regular expressions.” Now they have two problems.
--Jamie Zawinski, in comp.lang.emacs

link|improve this answer
2  
I love that quote. – AMissico Jun 22 '10 at 0:35
What happens, lets say if the phone number is missing few digits - like "800555" only? is there a way to display only what is present there? – VoodooChild Jan 18 '11 at 20:13
3  
This is a bad implementation because if the area code starts with 0105555555 or something like that then you end up getting back (01) 555-5555 instead of (010) 555-5555. The reason being is that if you convert the phone number to a number then the zero at the front is seen as not being anything and and when you format it the first 0 gets dropped. – Paul Mendoza Mar 3 '11 at 18:13
@Paul Please read the problem definition: "I have a string "1112224444' it is a telephone number. I want to format as 111-222-4444 before I store it in a file". – Sean Mar 29 '11 at 16:45
This will not work if your phone number is a string, as the questions states, unless you convert it to a numerical value first. – JustinStolle Dec 1 '11 at 22:41
feedback

I prefer to use regular expressions:

Regex.Replace("1112224444", @"(\d{3})(\d{3})(\d{4})", "$1-$2-$3");
link|improve this answer
2  
I suppose this would work, but the .ToString() format is easier to read and should perform better. – Joel Coehoorn Oct 9 '08 at 18:36
3  
If I'm dealing with a string already, as the poster has said, casting it to a long and back again seems silly. – Ryan Duffield Oct 9 '08 at 18:39
Maybe this is what I need after all. may handle the extension better – Brian G Dec 30 '08 at 14:44
2  
+1 for not treating a telephone number as a numeric value. – statenjason Sep 15 '09 at 17:47
1  
+1 for keeping the number as a string (given that often phone numbers used for automated SMS systems have to be stored in the +44 format) – Ed Woodcock Dec 18 '09 at 9:39
show 1 more comment
feedback

You'll need to break it into substrings. While you could do that without any extra variables, it wouldn't be particularly nice. Here's one potential solution:

string phone = i["MyPhone"].ToString();
string area = phone.Substring(0, 3);
string major = phone.Substring(3, 3);
string minor = phone.Substring(6);
string formatted = string.Format("{0}-{1}-{2}", area, major, minor);
link|improve this answer
Jon are you sure making three substrings is better than using string.format? – Pradeep Nov 19 '08 at 18:38
I use String.Format as well - but how are you suggesting to achieve the result without using String.Format? – Jon Skeet Nov 19 '08 at 22:35
StringBuilder? :P – poke Mar 11 '11 at 17:02
I wrapped that in an if (phone.Length == 10) condition. – Zack Peterson Mar 31 '11 at 16:32
@Downvoter: Care to comment? – Jon Skeet Sep 26 '11 at 16:14
feedback

As far as I know you can't do this with string.Format ... you would have to handle this yourself. You could just strip out all non-numeric characters and then do something like:

string.Format("({0}) {1}-{2}",
     phoneNumber.Substring(0, 3),
     phoneNumber.Substring(3, 3),
     phoneNumber.Substring(6));

This assumes the data has been entered correctly, which you could use regular expressions to validate.

link|improve this answer
2  
And it assumes a north american phone number – chris Sep 15 '09 at 23:11
1  
And last substring should be corrected to .Substring(6) – Shrage Smilowitz Mar 16 '10 at 16:46
Fixed ... thanks @Shrage Smilowitz! – mattruma Mar 16 '10 at 16:51
feedback

If you can get i["MyPhone"] as a long, you can use the long.ToString() method to format it:

Convert.ToLong(i["MyPhone"]).ToString("###-###-####");

See the MSDN page on Numeric Format Strings.

Be careful to use long rather than int: int could overflow.

link|improve this answer
feedback

Use Match in Regex to split, then output formatted string with match.groups

Regex regex = new Regex(@"(?<first3chr>\d{3})(?<next3chr>\d{3})(?<next4chr>\d{4})");
Match match = regex.Match(phone);
if (match.Success) return "(" + match.Groups["first3chr"].ToString() + ")" + " " + 
  match.Groups["next3chr"].ToString() + "-" + match.Groups["next4chr"].ToString();
link|improve this answer
feedback
Function FormatPhoneNumber(ByVal myNumber As String)
    Dim mynewNumber As String
    mynewNumber = ""
    myNumber = myNumber.Replace("(", "").Replace(")", "").Replace("-", "")
    If myNumber.Length < 10 Then
        mynewNumber = myNumber
    ElseIf myNumber.Length = 10 Then
        mynewNumber = "(" & myNumber.Substring(0, 3) & ") " &
                myNumber.Substring(3, 3) & "-" & myNumber.Substring(6, 3)
    ElseIf myNumber.Length > 10 Then
        mynewNumber = "(" & myNumber.Substring(0, 3) & ") " &
                myNumber.Substring(3, 3) & "-" & myNumber.Substring(6, 3) & " " &
                myNumber.Substring(10)
    End If
    Return mynewNumber
End Function
link|improve this answer
feedback

This should work:

String.Format("{0:(###)###-####}", Convert.ToInt64("1112224444"));

OR in your case:

String.Format("{0:###-###-####}", Convert.ToInt64("1112224444"));
link|improve this answer
2  
1 small problem if i am using 01213456789 its makes (12) 345-6789...any solution...? – Sangram Jun 8 '11 at 12:06
feedback

To take care of your extension issue, how about:

string formatString = "###-###-#### ####";
returnValue = Convert.ToInt64(phoneNumber)
                     .ToString(formatString.Substring(0,phoneNumber.Length+3))
                     .Trim();
link|improve this answer
feedback

Try this

string result;
if ( (!string.IsNullOrEmpty(phoneNumber)) && (phoneNumber.Length >= 10 ) )
    result = string.Format("{0:(###)###-"+new string('#',phoneNumber.Length-6)+"}",
    Convert.ToInt64(phoneNumber)
    );
else
    result = phoneNumber;
return result;

Cheers.

link|improve this answer
feedback
public string phoneformat(string phnumber)
{
String phone=phnumber;
string countrycode = phone.Substring(0, 3); 
string Areacode = phone.Substring(3, 3); 
string number = phone.Substring(6,phone.Length); 

phnumber="("+countrycode+")" +Areacode+"-" +number ;

return phnumber;
}

Output will be :001-568-895623

link|improve this answer
feedback

I suggest this as a clean solution for US numbers.

public static string PhoneNumber(string value)
{ 
    value = new System.Text.RegularExpressions.Regex(@"\D")
        .Replace(value, string.Empty);
    value = value.TrimStart('1');
    if (value.Length == 7)
        return Convert.ToInt64(value).ToString("###-####");
    if (value.Length == 10)
        return Convert.ToInt64(value).ToString("###-###-####");
    if (value.Length > 10)
        return Convert.ToInt64(value)
            .ToString("###-###-#### " + new String('#', (value.Length - 10)));
    return value;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.