<plug type="shameless">You could suggest they check out the OGRE for an explanation of the regex, too. ;) </plug>

But honestly, you might want to avoid the regex altogether. My solution might be construed as worse line noise, though, but it depends on how you comment it.

use warnings; use strict; my (@results, @final, %seen); while(<>){ tr/\0//d; # strip NULs # if we're INSERTing into Photo (but not from)... if (/(?<!from )INSERT INTO Photo/) { # get: BEFORE (INSIDE) AFTER from string my @s = split /[()]/; push @results, [ $s[0], "($s[1])", $s[2] ]; } } # sort by the values in parens @final = sort { $a->[1] cmp $b->[1] } @results; open OUT, ">results.txt" or die $!; for my $line (@final) { my $fieldNames = $line->[1]; # if we've never seen these values, print if (not $seen{$fieldNames}) { print OUT @$line; $seen{$fieldName}++; } } close OUT;
Of course, you could split more trickily, but it looks more like line noise then.
# split BEFORE a ( or AFTER a ) my @s = split /(?=\()|(?<=\))/; push @results, \@s; ### that even lets you get away with leaving out @s push @results, [ split /(?=\()|(?<=\))/ ];
And you could condense the "seen" logic to:
# display the line if we've never seen the fields print OUT @$line if not $seen{$line->[1]}++;
But that might be too idiomatic for lazy people to spend time understanding.

japhy -- Perl and Regex Hacker

In reply to Re: Trying to avoid line noise (brain cramp) by japhy
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.