Re: Extracting links. - without modules

2005-01-17 Thread Chris Devers
On Mon, 17 Jan 2005, Alexander Blüm wrote: > this is also possible _without_ any modules, except maybe "strict". > > # this will replace the contents of each match in @get > foreach(@array){ > my @get = $_ =~ //g; > } What happens if the url has a doublequote followed by an angle bracket? It'

Re: Extracting links. - without modules

2005-01-17 Thread Alexander Blüm
On Sun, 16 Jan 2005 18:36:09 +0500 "Sara" <[EMAIL PROTECTED]> wrote: > I am trying to extract links along with HTML tags from a > list, but it's not working on my XP machine with Active State Perl > 5.0.6 Kindly help. > > # CODE START > > my @array = qq| > h

RE: Extracting links.

2005-01-16 Thread Charles K. Clarkson
Sara <[EMAIL PROTECTED]> wrote: : I am trying to extract links along with HTML tags from a list, but it's not working on my XP machine : with Active State Perl 5.0.6 Kindly help. : While Randy already addressed using HTML::LinkExtractor to retrieve links, you should also hop over to ActiveS

Re: Extracting links.

2005-01-16 Thread Randy W. Sims
Sara wrote: I am trying to extract links along with HTML tags from a list, but it's not working on my XP machine with Active State Perl 5.0.6 Kindly help. # CODE START my @array = qq| http://www.mydomain.com";>http://www.mydomain.com/images/logo2.gif";> |; #ex

Extracting links.

2005-01-16 Thread Sara
I am trying to extract links along with HTML tags from a list, but it's not working on my XP machine with Active State Perl 5.0.6 Kindly help. # CODE START my @array = qq| http://www.mydomain.com";>http://www.mydomain.com/images/logo2.gif";> |; #extract LINK