start page | rating of books | rating of authors | reviews | copyrights

Perl in a Nutshell

Perl in a NutshellSearch this book
Previous: Reference: lcfirst Chapter 5
Function Reference
Next: Reference: link
 

length

length 
val

Returns the length in bytes of the scalar value val . If val is omitted, the function returns the length of $_ .

Do not try to use length to find the size of an array or hash. Use scalar @ array for the size of an array, and scalar keys % hash for the size of a hash.


Previous: Reference: lcfirst Perl in a Nutshell Next: Reference: link
Reference: lcfirst Book Index Reference: link