in reply to Re^5: Looking up elements of an array in another array!
in thread Looking up elements of an array in another array!

Thanks, this might help with my problem reported in the last update. I go and try.

better

  • Comment on Re^6: Looking up elements of an array in another array!

Replies are listed 'Best First'.
Re^7: Looking up elements of an array in another array!
by better (Acolyte) on Mar 23, 2013 at 07:54 UTC

    No, it doesn't. I will have to replace the brackets.

      This code will do

      foreach my $id (@ids) { #Replace brackets with underscore $id=~s/</_/; $id=~s/>/_/; #declare regex pattern my $ext = "[^0-9]*\.jpg"; my $a_ext=quotemeta($id).$ext;