in reply to How Do I Compare Array A to Array B, removing B elements from A.

Something like:
my @C = grep { my $x = $_; not grep { $x =~ /\Q$_/i } @B } @A;
  • Comment on Re: How Do I Compare Array A to Array B, removing B elements from A.
  • Download Code