Hello Monks,
I am baffled as to why this code isn't working; it just returns "1, 1, 1" when I have three elements in the array. I use virtually the same regex elsewhere and it works fine. If I switch to "uc", that works, too; so I know I still have the correct values in my ARGV. Can someone give me an explanation? (I'm just trying to strip the provided names down to the file names without directory structure).
print $out_file "Lexicons: ", join(', ', map{s/.*\///} @ARGV[FIRST_LEX
+ICON .. $#ARGV]), "\n";
Thanks!