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

Re: Count number of occurrences of a substr

by ikegami (Patriarch)
on Sep 28, 2011 at 18:45 UTC ( [id://928385]=note: print w/replies, xml ) Need Help??


in reply to Count number of occurrences of a substr

Well, you could use a useless assignment to (). Except it's not useless. As you've already demonstrated, a list assignment in scalar context returns the number of scalars returned by its RHS.

( my @a = `route print`=~ m!0.0.0.0!g ) > 3
can be shortened to
( () = `route print`=~ m!0.0.0.0!g ) > 3
and broken
my $n = $str =~ m/this/g;
should be changed to one of
my $n = () = $str =~ m/this/g; my $n = grep 1, $str =~ m/this/g; my $n = map $_, $str =~ m/this/g;
Some might prefer
my $n = 0; ++$n while $str =~ m/this/g;

Log In?
Username:
Password:

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

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

    No recent polls found