How can I extract the HTTP from this text?
"Text: Here's 2 free bonuses. http://blablabla.blabla/blabla "
But the URL can also be another one.
Finally
After I have the array, which contains usually just one URL, how can I add it to the above text exactly at the same position? But with HTML tag <a>
The results should look something like this:
"Text: Here's 2 free bonuses.
<a href='http://blablabla.blabla/blabla'>http://blablabla.blabla/blabla</a> "