RE: extracting links from HTML data (7my own problem usiing grep

2002-01-17 Thread sanilkumar
Friends, I am Sanil.I am a computer Science student.I want to study expect programming and python Qt. If anybody of you know this or sites for the corresponding tutorial please please mail to me. from

RE: extracting links from HTML data (7my own problem usiing grep

2002-01-16 Thread mike
On Wed, 2002-01-16 at 07:15, Gary Hawkins wrote: > > However the script continues > > print @list3; > > my $var1='META'; > > @lista= grep{$var1} @list3;## not picked up at all > > print @lista > > > > anyone any clues > > Suppose I'm a little confused but perhaps you meant: > > print @list3; >

RE: extracting links from HTML data (7my own problem usiing grep

2002-01-15 Thread Gary Hawkins
> However the script continues > print @list3; > my $var1='META'; > @lista= grep{$var1} @list3;## not picked up at all > print @lista > > anyone any clues Suppose I'm a little confused but perhaps you meant: print @list3; @lista= grep(/META/, @list3); print @lista; /g -- To unsubscribe, e-m

Re: extracting links from HTML data (7my own problem usiing grep

2002-01-15 Thread mike
On Tue, 2002-01-15 at 01:44, Lorne Easton wrote: > I need to write some code that extracts that extracts hyperlinks from a > scalar ($data) and puts them into an array. > > I imagine that grep can do this, but my mastery of it and > reqular expressions are not brilliant. > > Can you please provi

Re: extracting links from HTML data

2002-01-14 Thread Briac Pilpré
In article <[EMAIL PROTECTED]>, Lorne Easton wrote: > I need to write some code that extracts that extracts hyperlinks from a > scalar ($data) and puts them into an array. > > I imagine that grep can do this, but my mastery of it and > reqular expressions are not brilliant. > > Can you please pr

Re: extracting links from HTML data

2002-01-14 Thread John W. Krahn
Lorne Easton wrote: > > I need to write some code that extracts that extracts hyperlinks from a > scalar ($data) and puts them into an array. > > I imagine that grep can do this, but my mastery of it and > reqular expressions are not brilliant. > > Can you please provide some example code, or a