Hello monks, I would like your help in understanding the use of map to do hash assignments, ive looked at the faq on here, the cookbook and the camel book but I cant quite work this out.. I have two strings in an array
my @teststr; my %testhash; $teststr[0] = "32977186 4 -rw-r--r-- 1 owner mygrp 65 Aug 4 +13:16 /long/path/to/my/file/file1.txt"; $teststr[1] = "32977186 4 -rw-r--r-- 1 owner mygrp 65 Aug 4 +13:16 /long/path/to/my/file/file2.txt";
and I want to put them in the hash to show
file1=>file1.txt file2=>file2.txt
it works fine if I use foreach:
foreach my $line (@teststr) { my ($key, $val); $val = (split /\//, $line)[-1]; ($key = $val) =~ s/\.txt//; $testhash{$key} = $val; }
but I think I should be able to use map to do this, I cant seem to account for the changing $_
my %testhash = map {(my $val = (split /\//, $_)[-1]); ((my $key = $va +l) =~ s/\.txt//);} @teststr;
gives
1 => 1
i think im getting the return value of the s//, so how can I do the split then run the regex on the result? thanks

In reply to hash assignment using map with multiple statements by diomedea

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.