Basically this is a technique I want to share. In this specific case it was useful for me to find the complete path of some files of which for some reson I knew only basenames.

Please note that I'm not proposing this as a general purpose technique for in that case it would be less efficient than a simpler approach. It is specifically thought to be more efficient when successive entries have a high probability of matching the same condition.

Basically this is the same technique described in my post available at "Just wanted to share this technique..." on clpmisc. So see also the thread that followed it for some discussions on the topic (including repeated misunderstandments!!)

UPDATE: due to subsequent discussions and implied experimenting, (see in particular Re^4: Yet Another...), I changed the original snippet to the current one. For reference the original snippet posted here is available at original snippet.

#!/usr/bin/perl -li.bak use strict; use warnings; my @pre=map "../../pics/$_/", '00'..'16'; while (<>) { chomp; my $cnt; for my $p (@pre) { local $_ = $p . $_; if (-e) { print; @pre[0..$cnt] = @pre[$cnt,0..$cnt-1] if $cnt; last; } $cnt++; } } __END__

In reply to Yet Another "Matching over a list of conditions"-like technique by blazar

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.