Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
A couple minor assumptions: lynx is in your path, sendmail is in your path, you only need to know who's on top and by how much. Why ass-u-me? lynx's dump is much easier to parse than the source of the page.

This version without use strict; or any errorchecking weighs in at 469 in the long form, and 429 in the most condensed form:

#!/usr/bin/perl -w open I,"lynx -dump http://www.cnn.com/ELECTION/2000/results/FL/index.h +tml|"; while(<I>) { @j = split; if($j[1]) {$j[1] =~ s/,//g;} if (/Bush/) { $b = $j[1];} elsif (/Gore/) { $g = $j[1];} } close I; open O, ">out"; $d = abs($b-$g); if ($b == $g) {$r="tied!\n";} $b < $g ? $r="Gore: $d\n" : $r="Bush: $d\n"; print O "$r"; close O; open F,"mfile"; $m = <F>; close F; open(M,"|sendmail -t"); print M <<E; Subject: results Cc: $m $r E close M; exit;
This one has both use strict; and error checking (though it does still make the above assumptions). It comes in at 612 bytes (according to wc). When I gutted the whitespace, it crawled in at 561 bytes.
#!/usr/bin/perl -w use strict; my $b; my $g; my $r; die "lynx failed\n" unless open I,"lynx -dump http://www.cnn.com/ELECT +ION/2000/r esults/FL/index.html|"; while(<I>) { my @j = split; if($j[1]) {$j[1] =~ s/,//g;} if (/Bush/) { $b = $j[1];} elsif (/Gore/) { $g = $j[1];} } close I; open O, ">log" or die "log failed\n"; my $d = abs($b-$g); if ($b == $g) {$r="tied!\n";} $b < $g ? $r="Gore: $d\n" : $r="Bush: $d\n"; print O "$r"; close O; open F,"mfile" or die "no mailfile\n"; my $m = <F>; close F; open(M,"|sendmail -t") or die "couldn't sendmail\n"; print M <<E; Subject: results Cc: $m $r E close M; exit;
And for sheer showing-off-ness, this is that shortest chunk:
#!/usr/bin/perl -w open I,"lynx -dump http://www.cnn.com/ELECTION/2000/results/FL/index.h +tml|";while(<I>){@j=split;if($j[1]){$j[1]=~s/,//g;} if(/Bush/){$b=$j[ +1];} elsif(/Gore/){$g=$j[1];}} close I;open O,">log";$d=abs($b-$g);if +($b==$g){$r="tied!\n";} $b<$g ? $r="Gore: $d\n" : $r="Bush: $d\n";pri +nt O "$r";close O;open F,"mfile";$m=<F>;close F;open M,"|sendmail -t" +;print M <<E; Subject: results Cc: $m $r E close M; exit
Heck, even if I don't win a tshirt, I'm pretty damn happy with getting this to work at ALL!

In reply to RE: Post Election Day Perl by amelinda
in thread Post Election Day Perl by vroom

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
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-16 18:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found