I have text (articles) with links that I want to transform to html. I am having a hard time figuring out how to change a link like this:
To this:
<a href="
I am looking for something like:
$article =~ s/http:. . /<a href=http. . . </a>/g;
But I have no idea how to create it.
Any help is appreciated. Thanks.
To this:
<a href="
I am looking for something like:
$article =~ s/http:. . /<a href=http. . . </a>/g;
But I have no idea how to create it.
Any help is appreciated. Thanks.