Help for this page

Select Code to Download


  1. or download this
    %tmp = map{ $_ => 1 } @b;
    @inte = grep(!/$tmp{$_}$/, @a) ;
    
  2. or download this
    %tmp = map{ $_ => $_ } @b;
    @inte = grep(/$tmp{$_}$/, @a) ;
    
  3. or download this
    @a = ('d:\1\1\1.txt',
    'd:\1\1\2.txt',
    'd:\1\1\3.txt',
    'd:\1\1\4.txt')
    
  4. or download this
    @b = ('\1\2.txt',
    '\1\3.txt'