There is something to keep in mind when talking about "clean" code. Code that operates within a languages strengths in usually more robust, but also more "natural". Sure, you use a regular expression, but Perl isn't really about regular expressions (entirely). Perl is more generally about list processing.

Consider the Schwartzian Transform. This is a powerful took which is the direct product of list oriented thinking. Ovid's solution stems from Perlish thinking. map and grep are list tools, and Ovid combines them into something that is clearly in the languages idiom, and therefore "clean". An anology would be the sentence "Sarcasm is the lowest form of wit I think not".It is grammatically correct, and uses few grammatical concepts. But it is hard to read and understand because it is outside of the languages idiom.

Cheers,
Erik

In reply to Re: What is clear code ? by erikharrison
in thread What is clear code ? by mandog

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.