Only in Perl would you get:
code:
opendir(DIRHANDLE, $testdir) or die "couldn't open directory: ".$testd +ir; @filenames = readdir(DIRHANDLE); closedir(DIRHANDLE); foreach $file (@filenames) { chomp $file; #pay close attention to the logic handling: if (($file ne ".") or ($file ne "..")) { print "parsing: ".$file; $x = <STDIN>; open (FILEHANDLE, $file) or die "couldnt open file ".$file; $line = <FILEHANDLE>; $rep = substr($line, $position, $length, $value); close(FILEHANDLE); }# end if } print "I think we're done here.";
And then the output:
parsing: . substr outside of string at lane_changer.pl line 33.
Notice how execution of the string "." falls through the if statement. AM I MISSING A FUNDAMENTAL ASPECT OF LOGICAL OPERATIONS? Or is Perl just not up to the task? I mean, c'mon:

In reply to This is why Perl is so frustrating by eggmatters

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.