The main problem I see is, that you are using idiomatic Perl to solve the problem, which makes the solution elegant but requires Perl knowledge to understand the stuff.

I see only one good solution to your problem, which does not change the code, because I see only minor things to change there (in fact, I'd change the die part to something like ... or die "couldn't open output file '$filename' : $!\n".

I would put a comment that describes what each of the idiomatic constructs does, like this :

my ( @results, %fields ); while(<>){ # Strip all NULL characters out of the current line s/\0//g; if (/(?<!from )INSERT INTO Photo/) { # Split that line into three parts and save a reference to i +t my @s = ( /([^(]+)(\([^)]+\))(.*)/ ); push @results, \@s; } } my @final = sort{ $a->[1] cmp $b->[1] } @results; open OUT, ">results.txt" or die $!; foreach( @final ) { # Print only one occurence of each statement my $fieldNames = $_->[1]; if ( ! exists $fields{ $fieldNames } ) { $fields{ $fieldNames } = 1; print OUT @{ $_ } } } close OUT;

This will of course need some learning of Perl on the recipient side, but I think that those comment lines should help the "casual reader" to understand the program flow (if the "casual reader" knows english that is.


In reply to Re: Trying to avoid line noise (brain cramp) by Corion
in thread Trying to avoid line noise (brain cramp) by Ovid

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.