The snippet I provided has nothing to do with opening files.

If you read the documentation for split in the links I provided, you'll see that split can take on several args or none:

split /regexp/, $splitstring, $quantity; split /regexp/, $splitstring; # quantity is assumed to be as many # as possible. split /regexp/; # $_ will be split up. split; # $_ will be split up as if the regex # looked like //.

print is a function, and thus, kinda likes to be called like this: print( "stuff" );. You can also call it like print "stuff";, but if the first thing to come after print is an opening parenthesis, print assumes that what follows is the args to the print function.

However, when you say (split), you're using the parens as a list constructor, to provide list context to split, not as a parameter set for print. So how do you specify to print that you want to treat the () as a list constructor or as grouping parens instead of as function parameter parens? You treat the parens as though they're part of an expression, by prepending the unary + sign.

Next, the [1,5] takes a slice of the list created by (split), returning only the 2nd and 6th elements.

This is all kind of idiomatic, which is why I recommend backing up a step and reading the docs. Once you've done that, you should have that lightbulb flick on and you'll catch on to what's going on.


Dave


In reply to Re^7: awk like question in perl by davido
in thread awk like question in perl by drock

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.