Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: How to count substrings in an array?

by mbethke (Hermit)
on Feb 03, 2013 at 07:11 UTC ( [id://1016784]=note: print w/replies, xml ) Need Help??


in reply to How to count substrings in an array?

Edit: forum glitch? As is evident from the title this should have ended up here

The "goatse operator" can make this a bit shorter and faster: $count =()= $string =~ /RE/; counts the number of matches in $string, so

my $count; for(@array) { $count +=()= /RE/g; }
does what you want. It evaluates the regex in list context so it returns the list of matches and then forces it to scalar context without assigning the list anywhere.

Replies are listed 'Best First'.
Re^2: How to count substrings in an array?
by CKL (Initiate) on Feb 03, 2013 at 07:21 UTC
    sorry, I figured it out and meant to delete it, rather than leave a blank. thank you for your time anyway.

Log In?
Username:
Password:

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

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

    No recent polls found