Generate a link from a word in a string with react-linkify

Viewed 18

Is there a possibility to create a link from a word in a string of text?

Example string:

"This is the first sentence. This is the second sentence."

So the rendered HTML should look like this:

This is the first sentence. This is the second <a href="https://www.example.com">sentence</a>.

I want to create a link from the word "sentence" but only the second occurrence.

0 Answers
Related