Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
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??


in reply to Counting number of characters in a string

Count the dots using a regular expression:
$str="There's many more ways to do it.\n"; $str =~ tr/\000-\xff/./; while ( $str =~ /(.)/g ) { $count++; }
You can check this using a different method:
$count2++ while chop $str; $count eq $count2 or warn "there's something wrong with this code.\n";


p

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 chanting in the Monastery: (5)
As of 2024-04-20 01:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found