I am implementing a search input and this is my code:
"Author: Tiara Jordan Date: 02/23/17 Title: The Big Bang Theory",.replace(new RegExp( 't', 'g' ),`<strong>t</strong>`)
This would result to:
"Au<strong>t</strong>hor: <strong>T</strong>iara Jordan Da<strong>t</strong>e: 02/23/17 <strong>T</strong>i<strong>t</strong>le: <strong>T</strong>he Big Bang <strong>T</strong>heory"
How do i skip the Author, Title and Date matching the regexp? my expexted result would be like this:
"Author: Tiara Jordan Date: 02/23/17 Title: The Big Bang Theory"