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 8552489
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T14:26:05+00:00 2026-06-11T14:26:05+00:00

I am trying to find // (slashes) in the document and wrap it with

  • 0

I am trying to find // (slashes) in the document and wrap it with a span.

I’ve tried

var slashes = "//";
/slashes+/

So output should be:

Hello There! I Am <span class="slashes">//</span> An Alien

With jQuery .replace() and :contains but nothing happens, and I am new to reguler expressions to do this correctly. How would I do this?

Edit: What have I tried:
Solution for this question didn’t work:

function slashes($el) {

   $el.contents().each(function () {
       dlbSlash = "//";
       if (this.nodeType == 3) { // Text only
           $(this).replaceWith($(this).text()
               .replace(/(dlbSlash)/gi, '<span class="slashes">$1</span>'));
       } else { // Child element
           slashes($(this));
       }

   });
}

slashes($("body"));
  • 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-06-11T14:26:06+00:00Added an answer on June 11, 2026 at 2:26 pm

    You need to escape the slashes in your regex. Try

    var mystring = "adjfadfafdas//dsagdsg//dsafda"
    mystring.replace(/\/\//g,'<span class="slashes">\/\/</span>');
    

    Should output

    "adjfadfafdas<span class="slashes">//</span>dsagdsg<span class="slashes">//</span>dsafda"
    

    If you want to replace the slashes in h2 and p tags, you can loop through them like so:

    $('h2, p').each(function(i, elem) { 
        $(elem).text(
            $(elem).text().replace(/\/\//g,'<span class="slashes">\/\/</span>'));
    });
    

    This will blow away any additional html tags you may have had in your p and h2 tags, though.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to find a way to remove blank pages from a document I wrote
im trying to find if there is any javascript to format a string for
Trying to find out if there any good modules which allow constant monitoring of
Trying to find the sqlserver adapter for rails on windows. I have tried getting
i trying find something like jsfiddle.net resizable layout, but lightweight. i found http://www.jquery-css.com/download-css-jquery-templates http://layout.jquery-dev.net/
I trying find a simple python-based algorithmic ranking system. Here's the scenario: There will
Trying to find out why this jQuery JS isn't making ajax call though it
Trying to find a standard. The CmdLet will process data - multiple input, defined
Trying to find out if it's possible to use SQLAlchemy on Heroku. Thanks.
Trying to find the best way of create an overlap/overlay layer to fill the

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.