Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: How to count substrings in an array?

by BrowserUk (Patriarch)
on Feb 03, 2013 at 08:16 UTC ( [id://1016802]=note: print w/replies, xml ) Need Help??


in reply to How to count substrings in an array?

my $count = 0; $count += map /$substring/g, @array;

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Replies are listed 'Best First'.
Re^2: How to count substrings in an array?
by AnomalousMonk (Archbishop) on Feb 03, 2013 at 11:16 UTC

    ... and you don't even need the '+' on the  += operator:

    >perl -wMstrict -lE "my $s = 'abababa'; my $t = 'aba'; ;; my $c = map /(?=$t)/g, qw(abababa ababa); say $c; " 5
      and you don't even need the '+' on the += operator:

      Of course I don't. Much nicer!


      With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
      Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
      "Science is about questioning the status quo. Questioning authority".
      In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (7)
As of 2024-04-23 18:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found