Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: IF NOT! IF NOT!

by abstracts (Hermit)
on Aug 03, 2001 at 00:25 UTC ( [id://101782]=note: print w/replies, xml ) Need Help??


in reply to IF NOT! IF NOT!

Hello,

I think this is what you wanted to do:

my @list = qw/hello hunn I am home homealone myhome myhomealone/; print "$_\n" for grep {$_ !~ /home/} @list; # hello # hunn # I # am
Hope this helps,,,

Aziz,,,

Replies are listed 'Best First'.
Re: Re: IF NOT! IF NOT!
by damian1301 (Curate) on Aug 03, 2001 at 03:48 UTC
    A bit excessive, this will work just fine.

    grep{$_!~/home/&&print"$_\n"} @list;
    Which results the same as yours.

    UPDATE: Changed map to grep so there would be no void context stuff, thanks runrig.

    $_.=($=+(6<<1));print(chr(my$a=$_));$^H=$_+$_;$_=$^H; print chr($_-39); # Easy but its ok.
      Hello

      You can go even with

      /home/||print"$_\n"for@list
      But this is not golf :-)

      Aziz,,,

      And that is using map in a void context (creating an array with map and throwing it away). Better to just use a for loop:
      /home/ and print "$_\n" for @list;
      Update: Damian's right (in reply below). reverse the logic:
      /home/ or print "$_\n" for @list;
        But you've got reverse logic too. You are NOT supposed to print it if it has home anywhere in it. So what you want is in Re: Re: Re: IF NOT! IF NOT!.

        $_.=($=+(6<<1));print(chr(my$a=$_));$^H=$_+$_;$_=$^H; print chr($_-39); # Easy but its ok.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (6)
As of 2024-04-25 14:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found