Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Array length with range operator

by Happy-the-monk (Canon)
on Jun 06, 2013 at 06:39 UTC ( [id://1037377]=note: print w/replies, xml ) Need Help??


in reply to Array length with range operator

or try this ;-)

perl -wE'say scalar @{["aa".."zz"]}'

Cheers, Sören

(hooked on the Perl Programming language)

Replies are listed 'Best First'.
Re^2: Array length with range operator
by gurpreetsingh13 (Scribe) on Jun 06, 2013 at 07:25 UTC
    Thanks.

    Good trick.

    Anonymous array - then convert the ref. back to array and apply scalar to it.

      Also works for "highest index" rather than "number of elements":

      >perl -wMstrict -lE "say scalar $#{[ 'aa' .. 'zz' ]}; " 675

        Or insert commata and count them ;-)

        perl -wE "say 1 + join(',','aa' .. 'zz') =~ tr/,//;"

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1037377]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-04-20 00:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found