Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^2: How to add an exceptio for"for loop"

by Anonymous Monk
on Mar 21, 2011 at 04:55 UTC ( [id://894407]=note: print w/replies, xml ) Need Help??


in reply to Re: How to add an exceptio for"for loop"
in thread How to add an exceptio for"for loop"

grep will not work because other array elements also have a "." in them.I dont want a loop on the array element which is exactly "."

  • Comment on Re^2: How to add an exceptio for"for loop"

Replies are listed 'Best First'.
Re^3: How to add an exceptio for"for loop"
by ELISHEVA (Prior) on Mar 21, 2011 at 05:05 UTC

    I think you may be confusing the command line grep with Perl's grep command. my @selected = grep { $_ ne "." } @some_array selects elements based on whether the content of {....} returns true or false. As { $_ ne "."} is only true on an exact non-match with ".", it will exclude only ".".

    ".foobar", "foo.bar", etc. will pass the test, i.e. { $_ ne "."} will be true, and therefore will be in @selected.

      Do you spot anything wrong in the below line,for some reason the for loop is executed even for the element "." in @folders

      foreach my $folder (grep {$_ ne "."}@folders) { }

        Insofar as I understand what you're trying to do, it looks OK:

        >perl -wMstrict -le "my @folders = qw(foo .foo foo.bar foo. . .. ...); ;; foreach my $folder (grep { $_ ne '.' } @folders) { printf qq{'$folder' }; } " 'foo' '.foo' 'foo.bar' 'foo.' '..' '...'

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (2)
As of 2024-04-26 01:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found