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