Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

124
Views
Highlight React JSX element for array of keywords

I am new to React and am attempting to highlight the text in a JSX expression based on the keywords from an array.

return <RightWrapper>
{value.sort((a, b) => a - b.id).map(transcript => <p key={transcript.id}>{transcript.createdAt+"  "+ transcript.Transcription +" "} </p> )}
</RightWrapper>

searchWords={["tech", "deck", "financial"]}
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You can create a set of search words, Check if that text is available in a set or not, You can do using an array also but it's slower compared to the set.

const set = new Set(["tech", "deck", "financial"]);
const arr =  value.sort((a, b) => a.id - b.id)

return ( 
  <RightWrapper>
  {
    arr.map(transcript => (
      <p 
        key={transcript.id}
        style={{
          color: set.has(transcript.id) ? 'red' : 'black'
        }}
        >{transcript.createdAt + "  " + transcript.Transcription + " "} </p>
    ))
  }
  </RightWrapper>
)

This should solve your problem,

const set = new Set(["tech", "deck", "financial"]);
const arr = value.sort((a, b) => a.id - b.id);

function createMarkup(transcript) {
  const words = ["tech", "deck", "financial"];
  let str = `${transcript.createdAt} ${transcript}`;
  words.forEach((word) => {
    if (str.includes(word)) {
      str = str.replaceAll(word, `<span class="highlight">${word}</span>`);
    }
  });

  return { __html: str };
}

return (
  <RightWrapper>
    {arr.map((transcript) => (
      <p
        dangerouslySetInnerHTML={createMarkup(transcript.Transcription)}
        key={transcript.id}
      ></p>
    ))}
  </RightWrapper>
);
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!