Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Counting number of characters in a string

by petral (Curate)
on Mar 15, 2001 at 01:30 UTC ( [id://64502]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $str="There's many more ways to do it.\n";
    
    ...
    while ( $str =~ /(.)/g ) {
       $count++;
    }
    
  2. or download this
    $count2++ while chop $str;
    $count eq $count2 or warn "there's something wrong with this code.\n";
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-04-23 06:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found