vote up 4 vote down star

What is the Perl equivalent of strlen()?

flag

3 Answers

vote up 26 vote down check
perldoc -f length

   length EXPR
   length  Returns the length in characters of the value of EXPR.  If EXPR is
           omitted, returns length of $_.  Note that this cannot be used on an
           entire array or hash to find out how many elements these have.  For
           that, use "scalar @array" and "scalar keys %hash" respectively.

           Note the characters: if the EXPR is in Unicode, you will get the num-
           ber of characters, not the number of bytes.  To get the length in
           bytes, use "do { use bytes; length(EXPR) }", see bytes.
link|flag
Thanks! Easy rep for you! :) – Kip Oct 21 '08 at 20:43
Just call me "Quick Draw". – Paul Tomblin Oct 21 '08 at 20:43
vote up 3 vote down
length($string)
link|flag
vote up 5 vote down

Although 'length()' is the correct answer that should be used in any sane code, Abigail's length horror should be mentioned, if only for the sake of Perl lore.

Basically, the trick consists of using the return value of the catch-all transliteration operator:

print "foo" =~ y===c;   # prints 3

y///c replaces all characters with themselves (thanks to the complement option 'c'), and returns the number of character replaced (so, effectively, the length of the string).

link|flag
Oh, that's lovely. Horrible, but lovely. – Paul Tomblin Oct 22 '08 at 15:27
y's counting modes don't actually modify the string, so they will work fine even on readonly values. – ysth Oct 24 '08 at 5:49
This is awesome in a terrible way. – Chris Lutz Mar 9 at 15:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.