Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: How do I combine SPLIT with trimming white space

by Fletch (Bishop)
on Aug 11, 2009 at 16:58 UTC ( [id://787702]=note: print w/replies, xml ) Need Help??


in reply to How do I combine SPLIT with trimming white space

Foreach doesn't require an actual array to work from; it's perfectly content to work on the list returned from split:

foreach my $entry ( split( /;/, $file_data ) ) { do { s/^\s+//; s/\s+$//; } for $entry; push @email_list, $entry; }

Of course you can use map and get everything in one statement.

print join( "\n", sort map { (my $t=$_)=~s/^\s+//;$t=~s/\s+$//;$t } sp +lit( /;/, $file_data ) ), "\n";

Update: Of course if you need the list later you can certainly store the return from the sort into a variable and print that instead.

my @email_list = sort map ... split( /;/, $file_data ); print join( "\n", @email_list ), "\n";

The cake is a lie.
The cake is a lie.
The cake is a lie.

Replies are listed 'Best First'.
Re^2: How do I combine SPLIT with trimming white space
by Your Mother (Archbishop) on Aug 11, 2009 at 20:37 UTC
      do { s/^\s+//; s/\s+$//; } for $entry;

    That's a weird way to write $entry =~ s/\A\s+|\s+\z//g; :)

      Wouldn't argue it too hard, but that one has a bit more leaning-toothpick-itis and the two separate s///'s are a bit more explicit in what's being done. But yes, mea culpa on the slightly evil use of postfix for to get $_ set though. :)

      The cake is a lie.
      The cake is a lie.
      The cake is a lie.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-19 10:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found