vote up 3 vote down star
1

When I am running the following statement:

@filtered = map {s/ //g} @outdata;

it is returning an empty list instead of the filtered list that I expected. What I am trying to do is remove every occurance of   from an array of string (which is an XML file).

Obviously, I am not understanding something. Can anyone tell me the correct way to do this, and why this isn't working for me

flag

6 Answers

vote up 10 vote down check

Try this:

@filtered = map {s/ //g; $_} @outdata;

The problem is the s operator in perl modifies $_ but actually returns the number of changes it made. So, the extra $_ at the end causes perl to return the modified string for each element of @outdata.

link|flag
1  
This code trashes the values in @outdata. – Kevin Panko Nov 23 at 21:15
vote up 2 vote down
use Algorithm::Loops "Filter";
@filtered = Filter { s/ //g } @outdata;
link|flag
vote up 5 vote down

Greg's answer has the problem that it will modify the original array as the $_ are passed aliased. You need:

@filtered = map {my ($new = $_) =~ s/ //g; $new} @outdata;
link|flag
vote up 1 vote down

To follow up on Tithonium's point, this will also do the trick:

@filtered = map {local $_=$_; s/ //g; $_} @outdata;

The "local" ensures you're working on a copy, not the original.

link|flag
vote up 6 vote down

Note that map is going to modify your source array as well. So you could either do:

map {s/ //g} @outdata;

and skip the @filtered variable altogether, or if you need to retain the originals,

@filtered = @outdata;
map {s/ //g} @filtered;

Although, in that case, it might be more readable to use foreach:

s/ //g foreach @filtered;
link|flag
vote up 1 vote down

As a counterpoint to Greg's answer, you could misuse grep:

@filtered = grep {s/ //g; 1} @outdata;

Don't do this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.