in reply to How do I replace a URL with a clickable hyperlink?
use Regexp::Common; $text =~ s[($RE{URI}{HTTP})] [<a href = "$1">$1</a>]g; [download]
Abigail