How can i find if text contains url string, i men if i have
Sometexthttp://daasddas some text
I want http://daasddas to be achored or maked as a link wit javascript
|
How can i find if text contains url string, i men if i have
I want http://daasddas to be achored or maked as a link wit javascript |
|||
|
|
|
|||
|
|
|
You have to use regex(Regular expressions) to find URL patterns in blocks of text. Here's a link to same question and answers: Regular Expression to find URLs in block of Text (Javascript) |
|||
|
|
|
you can use a regular expression to find an URL and replace it by the same with a leading and a trailing tag |
|||
|
|
|
While the code above works good if all given URLs are full (http://mydomain.com), I had problems parsing a URL like: www.mydomain.com i.e. without a protocol. So I added some simple code to the function:
If someone should fine a more optimal solution to add a default protocol to URLs, let me know! |
|||
|
|
|
I went on google. It's a cool tool. search:
I am pretty sure. ... really really really sure ... that you can derive your answer from these answers ...! |
|||
|
|