Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3305422
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T21:10:01+00:00 2026-05-17T21:10:01+00:00

I am working on a project where I need to replace any phone number

  • 0

I am working on a project where I need to replace any phone number on a site with a number formatted like this:

<span id="special-id">555-666-7777</span>

Using regex isn’t really necessary as I know the value I need to replace. Also, some of the numbers may be formatted differently (with parentheses or decimals).

I’m fairly certain I could figure out how to do this with Jquery but, for this project, I need to use regular Javascript.

In a nutshell, I’d like to define 1 or more versions of the number ( 555-666-7777, (555) 666-7777, etc ) and have them replaced with my hyphenated version of the number, in a SPAN tag, with an ID.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T21:10:01+00:00Added an answer on May 17, 2026 at 9:10 pm

    Are you updating a bunch files (e.g. .html) in a directory structure? If so, grep would be your friend here, especially if you can identify all the phone number permutations. Then use a regex with grep to find and replace across all of them. Here’s a partial solution as such:

    grep -l -R –perl-regexp “\b((\d{3})\s*|\d{3}-)\d{3}-\d{4}\b” * > output.txt

    Stolen from: http://sites.google.com/site/steveyegge2/five-essential-phone-screen-questions

    Update for JavaScript

    Use Regular Expression Backreferences in JavaScript. Basically you define a regex that has “sub matches” inside of it, where the replacement value refers back to those. In your case sub match the digits and then replace with back reference to those digits plus your separator(s) and surround with <span/> tags.

    Example

    Notice the “g” flag at the end of the regular expression to make it global.

    <html>
    
    <head>
    
    <script type="text/javascript">
    function cleanPhoneNumbers() {
        document.body.innerHTML = 
            document.body.innerHTML.replace(
                /\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})/g, 
                "<span>$1-$2-$3</span>"
            );
    }
    </script>
    
    </head>
    
    <body onload="cleanPhoneNumbers();">
    <div>There's a bunch of text here and some other <b>tags</b> and
    stuff <i>to mix it up.</i></div>
    <p>Perhaps <i>dial</i> (555) 666-7777</p>
    </body>
    
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on this project where I need to read in a lot
Hey guys I'm working on a project in C# were I must replace any
I am working a project where I need to generate a series of classes
I'm working on a project were we need more performance. Over time we've continued
I'm working on a project where I need the following. WCF service on the
I am working on a project where I need to create a boundary around
I am working on a project where I need to deal at the byte
I am working on a project and I need to save user configuration. The
I've been working on a project where I need to iterate through a collection
I'm currently working on a pet project and need to do C++ development on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.