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

  • Home
  • SEARCH
  • 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 7926775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T18:56:02+00:00 2026-06-03T18:56:02+00:00

So I have written this code here: highlighter: function (item) { var parts =

  • 0

So I have written this code here:

highlighter: function (item) {
    var parts = this.query.split(" ");
    var length = parts.length;
    for (var i = 0; i < length; i++){
        if(parts[i] != ""){
            item = item.replace(new RegExp('(' + parts[i] + ')', 'ig'), function ($1, match) {
                return '<strong>' + match + '</strong>'
            })
        }
    }

  return item;
}

What it does is:

  • I have the string item, and the string this.query
  • I split this.query at each space, and put the resulting substrings into parts[]

My goal is to make every occurrence of a substring from parts[] in item bold.

So if

item = "This is some text"

and

this.query = "This some"

I want <strong>This</strong> is <strong>some</strong> text.

This works perfectly, except when I get matches in the <strong> element itself. So I want only the matches replaced that aren’t in the strong tag itself. Because I get resulting strings with ong> or trong>in it. Is this possible?

  • 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-03T18:56:03+00:00Added an answer on June 3, 2026 at 6:56 pm

    If you want to avoid the strong tags, do the replacement all in one step:

    item = item.replace(
        new RegExp(parts.join('|'), 'ig'),
        function (match) {
            return '<strong>' + match + '</strong>'
        }
    )
    

    You’ll still have a problem if "item" contains strong before you begin, but otherwise you won’t have a problem.

    Edit:

    Let’s say you want to match "this", "that" and, "the other". A regular expression, or RegExp for that is This|some|the other. Oddly enough, the string passed to new RegExp is parsed as a regular exrpession.

    The other important thing to note is that item.replace(regex, callback) will replace every match it finds with the result of calling callback(match, ...) for each one. The first argument passed to callback is the entire match of the regex, while the remaining arguments are the groups within the match.

    If you want to know more, read up on regular expressions.

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

Sidebar

Related Questions

I have written this piece of code here and I have linked it alright
I have written this code and what I am trying to do here is
I have written this code to join ArrayList elements: Can it be optimized more?
I have written this code to convert string in such format 0(532) 222 22
I have written this code in javascript however I have to make it work
In my code I have written this but it fails to compile: In Class1.h:
I have this code written in .NET 4.0 using VS2010 Ultimate Beta 2: smtpClient.Send(mailMsg);
Hi I have written code like this @Id @Column(nullable=false) @GeneratedValue(strategy=GenerationType.AUTO) public int getUserID() {
I have written grammar for a language (sample code below) //this is a procedure
I have this code in my ASP.NET application written in C# that is trying

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.