Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: how to select which words have Y and W

by LanX (Saint)
on Dec 26, 2013 at 10:30 UTC ( [id://1068409]=note: print w/replies, xml ) Need Help??


in reply to how to select which words have Y and W

Try this

 @selection = grep { /REGEX/ } @array

and plz give us feedback with code you tried.

see also grep and perlre

Cheers Rolf

( addicted to the Perl Programming Language)

Replies are listed 'Best First'.
Re^2: how to select which words have Y and W
by rammohan (Acolyte) on Dec 26, 2013 at 10:44 UTC
    i tried like this but it doesn't show any result
    my@colors=('red', 'cyan', 'yellow', 'blue' ); my @yw_colors = grep {/yw/} @colors;

      UPDATE: Add a print statement. And the regex should be /x|y/, i.e. you want to find an x or an y, not x followed by y. Another possible regex that would work would use a character class: /[xy]/

        i tried but it doesn't work,slightly i change my code then it works that is
        my @yw_colors = grep {/yw/} @colors; ' print @yw_colors,$/
      A reply falls below the community's threshold of quality. You may see it by logging in.

Log In?
Username:
Password:

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

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

    No recent polls found