Re: Remove the Elements of Array A from Array B

2002-11-15 Thread Thomas R Wyant_III
"optique" <[EMAIL PROTECTED]> wrote: > forgive my poor english, :), I come form beijing, china. It is better than my Chinese! > my question is: > @B = (1,2,3,4,5,6); > @A = (3,6); > and I want to remove 3 and 6 from @B, after that the @B > will be (1,2,4,5). > but, I don't want to use "foreach

RE: Remove the Elements of Array A from Array B

2002-11-15 Thread Napier, Ed
-Original Message- From: $Bill Luebkert [mailto:dbe@;wgn.net] Sent: Friday, November 15, 2002 6:43 AM To: optique Cc: [EMAIL PROTECTED] Subject: Re: Remove the Elements of Array A from Array B optique wrote: > forgive my poor english, :), I come form beijing, china. > > my qu

Re: Remove the Elements of Array A from Array B

2002-11-15 Thread $Bill Luebkert
optique wrote: > forgive my poor english, :), I come form beijing, china. > > my question is: > @B = (1,2,3,4,5,6); > @A = (3,6); > and I want to remove 3 and 6 from @B, after that the @B > will be (1,2,4,5). > > but, I don't want to use "foreach" to iterate @B and @A > Is there any easy way to d