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
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;
>
> 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
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
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
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