in reply to Re: Answer: How do I replace a URL with a clickable hyperlink?
in thread How do I replace a URL with a clickable hyperlink?
"ABC.com" is not a URL -- it's a domain.
Assuming you had first matched the domain (and had it in a variable named $domain) and you knew that all of the domains were using a host named 'www' for protocol 'http', you could use:
my $link = "<a href='http://www.$domain'>$domain</a>";How you match domains is up to you... but I know that I get annoyed when my jabber client thinks that my discussions about perl scripts should be turned into links to websites in Poland.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Answer: How do I replace a URL with a clickable hyperlink?
by Anonymous Monk on Apr 06, 2005 at 18:20 UTC | |
by jhourcle (Prior) on Apr 07, 2005 at 01:41 UTC |