Unless the exclusionary items you're looking for in column 8 also appear in another column, it's not necessary to isolate column 8 to check for them. If you find them within an entry--as a whole--you can skip that entry:

use strict; use warnings; my $regex = join '|', map qq|\Q$_\E|, qw(sno=; tail->tail head->head); open my $file, '<file1.txt' or die "$!"; while( <$file> ) { next if /$regex/; print } close $file;

$regex is created by first using qw to make a list of quoted words from the space-delimited exclusionary items. This list is passed to map which uses qq|\Q$_\E| to escape all special characters in each list item ($_ contains a list item). The results of map are joined with '|' for use as an or between the exclusionary items in the subsequent pattern match.

while we're reading each of the file's lines, if the pattern match finds an exclusionary item, the next line's requested, else the line's printed--both the matching and print operating on perl's default scaler: $_.

Hope this helps!


In reply to Re: split and matching by Kenosis
in thread split and matching by perllearner007

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.