Perl Newby has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to parse and print out the PITCHING information to an HTML format. I can get the Cardinals info to parse out, however, I am unable to get the Reds as well. Any suggestion? I am using the following code:CAUGHT STEALING 5602|Edgar Renteria|24|St. Louis Cardinals|1|3 PITCHING 24|St. Louis Cardinals 4379|Andy Benes|L, 2-2|0|6|8|3|3|0|0|1|24|31|41|72|4.41|.258 4625|Heathcliff Slocumb|0|0|1|0|0|0|0|0|0|4|3|8|11|4.08|.231 4979|Mike Mohler|0|0|1|0|0|0|1|3|0|4|8|9|17|8.79|.293 17|Cincinnati Reds 5346|Ron Villone|W, 3-1|0|6.2|5|2|2|3|4|2|28|42|59|101|4.73|.301 6174|Scott Williamson|SV, 2|0|2.1|2|0|0|0|3|0|9|10|25|35|2.53|.211 DOUBLE PLAYS 24|St. Louis Cardinals|2|Vina to Renteria to McGwire|Vina to Renteria +to McGwire
open(INPUT,"c:/MLB_boxscore.TXT") or die "Can't open file"; print "<html><head><title>My page</title></head><body>"; print "<table>"; $pitching = 0; while(<INPUT>) { if($pitching) { last if /^\s*$/; chomp; @LS = (); push @LS, split('\|',$_); print "<tr>"; print "<td> @LS[1] </td>"; print "<td> @LS[2] </td>"; print "<td> @LS[3] </td>"; print "<td> @LS[4] </td>"; print "<td> @LS[5] </td>"; print "<td> @LS[6] </td>"; print "<td> @LS[7] </td>"; print "<td> @LS[8] </td>"; print "<td> @LS[9] </td>"; print "<td> @LS[10] </td>"; print "<td> @LS[11] </td>"; print "<td> @LS[12] </td>"; print "<td> @LS[13] </td>"; print "<td> @LS[14] </td>"; print "<td> @LS[15] </td>"; print "<td> @LS[16] </td>"; print "</tr>"; } elsif(/^PITCHING/) { $pitching = 1} } print "</table></body></html>"; close INPUT;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Parsing a Text File
by suaveant (Parson) on Apr 11, 2001 at 23:27 UTC | |
by buckaduck (Chaplain) on Apr 12, 2001 at 01:21 UTC | |
by suaveant (Parson) on Apr 12, 2001 at 16:19 UTC | |
|
(jeffa) Re: Parsing a Text File
by jeffa (Bishop) on Apr 11, 2001 at 23:17 UTC | |
by suaveant (Parson) on Apr 11, 2001 at 23:19 UTC | |
by Perl Newby (Acolyte) on Apr 11, 2001 at 23:49 UTC | |
by suaveant (Parson) on Apr 11, 2001 at 23:52 UTC |