Re: deleting elements of an array and push into new

2003-01-03 Thread John W. Krahn
Ramprasad wrote: > > Hello all, Hello, > I have to remove elements from an array if they match a particualr > string and put it into another array > > eg if element matches index or default I want it to be in a new array > > I am trying this > my @arr = qw( 01.html index.html aa.html bb.ht

Re: deleting elements of an array and push into new

2003-01-03 Thread david
Ramprasad wrote: > Hello all, > I have to remove elements from an array if they match a particualr > string and put it into another array > > eg if element matches index or default I want it to be in a new array > > I am trying this > my @arr = qw( 01.html index.html aa.html bb.html cc.html

RE: deleting elements of an array and push into new

2003-01-03 Thread Bob Showalter
Ramprasad wrote: > Hello all, > I have to remove elements from an array if they match a particualr > string and put it into another array > > eg if element matches index or default I want it to be in a new array > > I am trying this > my @arr = qw( 01.html index.html aa.html bb.html cc.html d

Re: deleting elements of an array and push into new

2003-01-03 Thread Shawn B
- Original Message - From: "Ramprasad" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 03, 2003 1:48 AM Subject: deleting elements of an array and push into new > Hello all, > I have to remove elements from an array if they match a par

deleting elements of an array and push into new

2003-01-02 Thread Ramprasad
Hello all, I have to remove elements from an array if they match a particualr string and put it into another array eg if element matches index or default I want it to be in a new array I am trying this my @arr = qw( 01.html index.html aa.html bb.html cc.html dd.html ); # the following does