How do I get the length of a string in Perl? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T19:56:48Z http://stackoverflow.com/feeds/question/223393 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/223393/how-do-i-get-the-length-of-a-string-in-perl 4 How do I get the length of a string in Perl? Kip 2008-10-21T20:31:38Z 2009-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#223401 26 Answer by Paul Tomblin for How do I get the length of a string in Perl? Paul Tomblin 2008-10-21T20:32:52Z 2009-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#224035 3 Answer by JDrago for How do I get the length of a string in Perl? JDrago 2008-10-22T00:12:38Z 2008-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#225944 5 Answer by Yanick for How do I get the length of a string in Perl? Yanick 2008-10-22T14:19:45Z 2008-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>