977707.pl
What day? 4/24/012
Wide character in print at D:\_Perl_\pl_test\977707.pl line 14, <> line 1.
AP Exam-ish Test, Part IA (multiple choice,
no calculator). We will start at
7:55 sharp: 28 questions in 55 minutes.
HW due (will not be collected until next week): another 70 minutesΓاض worth of
AP review problems, double dose over the long weekend.
##
#!/usr/bin/perl
use 5.014;
use LWP::Simple;
print "What day? ";
my $date = <>;
chomp $date;
my $url = 'http://staweb.sta.cathedral.org/departments/math/mhansen/public_html/1112hcal/1112hcal.htm'|| die "Specify URL in the form 'm/dd/0yy'";
my $html = get ($url);
$html =~ m{$date(.*?)(?=)}gms;
print "$1 \n";