I have a question about Perl more out of curiosity than necessity. I have seen there are many ways to do a lot of things in Perl, a lot of the time the syntax seems unintuitive to me (I've seen a few one liners doing som impressive stuff).
So.. I know the function split
returns an array. My question is, how do I go about printing the first element of this array without saving it into a special variable? Something like $(split(" ",$_))[0]
... but one that works.
substr()
doesn't return an array, it returns a string. – Barmar May 23 '13 at 23:44split
returns an array? – Lorkenpeist May 23 '13 at 23:46split
, my bad – Karlo May 23 '13 at 23:54