How do I get the length of a string in Perl? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T19:56:48Zhttp://stackoverflow.com/feeds/question/223393http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/223393/how-do-i-get-the-length-of-a-string-in-perl4How do I get the length of a string in Perl?Kip2008-10-21T20:31:38Z2009-03-09T15:43:08Z
<p>What is the Perl equivalent of strlen()?</p>
http://stackoverflow.com/questions/223393/how-do-i-get-the-length-of-a-string-in-perl/223401#22340126Answer by Paul Tomblin for How do I get the length of a string in Perl?Paul Tomblin2008-10-21T20:32:52Z2009-03-09T15:43:08Z<pre>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.
</pre>
http://stackoverflow.com/questions/223393/how-do-i-get-the-length-of-a-string-in-perl/224035#2240353Answer by JDrago for How do I get the length of a string in Perl?JDrago2008-10-22T00:12:38Z2008-10-22T00:12:38Z<pre><code>length($string)
</code></pre>
http://stackoverflow.com/questions/223393/how-do-i-get-the-length-of-a-string-in-perl/225944#2259445Answer by Yanick for How do I get the length of a string in Perl?Yanick2008-10-22T14:19:45Z2008-10-22T14:19:45Z<p>Although 'length()' is the correct answer that should be used in any sane code, <a href="http://www.perlfoundation.org/perl5/index.cgi?abigail_s_length_horror" rel="nofollow">Abigail's length horror</a> should be mentioned, if only for the sake of Perl lore. </p>
<p>Basically, the trick consists of using the return value of the catch-all transliteration operator:</p>
<pre><code>print "foo" =~ y===c; # prints 3
</code></pre>
<p>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).</p>