Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^3: Counting number of characters in a string

by toolic (Bishop)
on Jan 23, 2009 at 22:00 UTC ( [id://738602]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Counting number of characters in a string
in thread Counting number of characters in a string

This does not work for me. I expect the length of the string 'abc' to be 3, but your code returns 0:
use strict; use warnings; my $str = 'abc'; my $cnt = @{[$str =~ /(\.)/g]}; print "$cnt\n"; __END__ 0

Replies are listed 'Best First'.
Re^4: Counting number of characters in a string
by ikegami (Patriarch) on Jan 23, 2009 at 22:34 UTC

    Remove the backslash, add the "s" modifier. And the parens aren't necessary.

    my $cnt = @{[$str =~ /./sg]};

    Cheaper alternative:

    my $cnt =()= $str =~ /./sg;
Re^4: Counting number of characters in a string
by levonbarker (Initiate) on Dec 30, 2010 at 17:09 UTC
    Use the length() function.

Log In?
Username:
Password:

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

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

    No recent polls found