Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Understanding regular expressions: why do I have to use map to clear up undefs in regex output?

by Marshall (Canon)
on Jun 20, 2009 at 16:52 UTC ( [id://773265]=note: print w/replies, xml ) Need Help??


in reply to Understanding regular expressions: why do I have to use map to clear up undefs in regex output?

Another method is to use regex s/// to clean up string and then just use split.
#!/usr/bin/perl -w use strict; use Data::Dumper; my $s = '1,2,3,4,"fine",,,"day","today",,,'; $s =~ s/['"]//g; #no quotes my @s = split(/,/,$s); print Dumper \@s; __END__ $VAR1 = [ '1', '2', '3', '4', 'fine', '', '', 'day', 'today' ];
Update: I personally prefer the {} syntax of grep. Example: to "get rid of the blank tokens above, just @s = grep {/\S/}@s;. If you want to get rid of some undef values: @s = grep{defined $_}@s. Perl grep is a filtering operation. Perl map is a transformation operation. Use grep when you just want a subset of the data and aren't changing it. Use map when you are transforming the data input into something else.
  • Comment on Re: Understanding regular expressions: why do I have to use map to clear up undefs in regex output?
  • Select or Download Code

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-18 04:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found