vote up 2 vote down star
1

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?

flag

54% accept rate

7 Answers

vote up 0 vote down

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(4));

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

link|flag
And it assumes a north american phone number – chris Sep 15 at 23:11
vote up 1 vote down

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|flag
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
vote up 2 vote down

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|flag
vote up 4 vote down

I prefer to use regular expressions:

Regex.Replace("1112224444", @"(\d{3})(\d{3})(\d{4})", "$1-$2-$3");
link|flag
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
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
+1 for not treating a telephone number as a numeric value. – statenjason Sep 15 at 17:47
vote up 8 vote down

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|flag
vote up 1 vote down

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

Regex regex = new Regex(@"(?\d{3})(?\d{3})(?\d{4})");

Match match = regex.Match(phone);

if (match.Success) return "(" + match.Groups["first3chr"].ToString() + ")" + " " + match.Groups["next3chr"].ToString() + "-" + match.Groups["next4chr"].ToString();

link|flag
vote up 0 vote down
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|flag

Your Answer

Get an OpenID
or

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