Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: Help With Online Table Scraper

by Anonymous Monk
on Mar 02, 2011 at 05:27 UTC ( [id://890909]=note: print w/replies, xml ) Need Help??


in reply to Re: Help With Online Table Scraper
in thread Help With Online Table Scraper

! defined and $_ = ' ' for @$row;
You maybe mean ! defined and  $_ != ' ' for @$row;   ?

Replies are listed 'Best First'.
Re^3: Help With Online Table Scraper
by GrandFather (Saint) on Mar 02, 2011 at 05:52 UTC

    No. That wouldn't make any sense at all!

    Perhaps I should have gone with my second instinct and written that line as:

    for my $cell (@$row) { if (! defined $cell) { $cell = ' '; } }

    I didn't because the fairly trivial task of setting undefined cells to a space becomes the dominant code in the sample. I'd hoped that the line would be pretty much ignored, but in retrospect that was pretty silly really.

    True laziness is hard work

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (8)
As of 2024-04-20 00:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found