![]() |
|
good chemistry is complicated, and a little bit messy -LW |
|
PerlMonks |
Re^7: awk like question in perlby davido (Cardinal) |
on Aug 12, 2004 at 21:31 UTC ( #382475=note: print w/replies, xml ) | Need Help?? |
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:
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 Section
Seekers of Perl Wisdom
|
|