⭐ in reply to How Do I Compare Array A to Array B, removing B elements from A.
my @C = grep { my $x = $_; not grep { $x =~ /\Q$_/i } @B } @A; [download]