Jump to content

**solved** Formatting for Output


bgirls

Recommended Posts

Hi Everyone!

I have a question. How do I insert characters into a string before I echo it to the browser?

In my database, I store phone numbers as 10 digit numbers (5555555555)

Assuming that I extract a row from the database and now the following is true:

$row[phone] is equal to 5555555555

But I need to know how to insert a hyphen after the third and sixth character so I can echo it as:

555-555-5555


If anyone can help, I would appreciate it. Thanks!

Link to comment
Share on other sites

[!--quoteo(post=358221:date=Mar 25 2006, 09:59 AM:name=Barand)--][div class=\'quotetop\']QUOTE(Barand @ Mar 25 2006, 09:59 AM) [snapback]358221[/snapback][/div][div class=\'quotemain\'][!--quotec--]
First you need to split it into the 3 parts

[code]$a = substr ($row['phone'], 0, 3);
$b = substr ($row['phone'], 3, 3);
$c = substr ($row['phone'], 6, 4);

echo "$a-$b-$c";[/code]
[/quote]



Works like a charm. Exactly what I needed. Thanks, Barand!
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.