Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: How do I find the length of a string?

by vrk (Chaplain)
on Jun 04, 2007 at 12:03 UTC ( [id://619100]=note: print w/replies, xml ) Need Help??


in reply to How do I find the length of a string?

Since Perl 5.6, Perl has had Unicode support, which manifests itself as UTF-8 encoded strings. If you want to find out how many characters a string has, simply use length($string). It just works.

However, if, for some reason, you need to find out how many bytes a string uses (which may be different from how many UTF-8 characters the string has):

use bytes; my $len = bytes::length($string);

Unless you know what you are doing, better steer clear of the latter. Use the former. (See perlunicode for more information.)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (6)
As of 2024-04-19 16:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found