Skip to content
Advertisement

React JS Detect link from text this is my [web](https://www.google.com/)

Do anyone have suggestions to detect link from text Currently in react I am just checking the regex for link using below code:

JavaScript

The output for above code displayed as shown here

But I just wanna display text as This is my web

Advertisement

Answer

If you wanted to continue using dangerouslySetInnerHTML you could use this match/replace to create an anchor…

JavaScript

…or you could create a bespoke component that maps the array output from the match to some JSX that creates an anchor.

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement