Just in case anyone would like to see it and safe the 4,000 clicks through sourceforge, and unpacking the zip file...
update: this made more sense before it was reparented from a dup-node that did not have the sources in it.
#!c:/Perl/bin/Perl.exe
#
# this code was put in the public domain here:
# http://sourceforge.net/projects/dataoniphone/ V 0.9.0 04/08/2008 17:
+01:00
open (INFILEHANDLE, "<table.txt") or die "error opening";
open (OUTFILEHANDLE, ">table.html") or die "error opening";
while (<INFILEHANDLE>) {
chomp;
if ($_ eq "") {
print OUTFILEHANDLE "<B><\/B><BR>\n\n<HR>\n"; # was an empty lin
+e
} else {
s/\t/ /; #join 1st & 2nd field (comment this if undesired)
s/\t/ <\/B><BR>\n/; # 1st fields will be bold so we have a <\/
+B>
s/\t/ <BR>\n/g; # remaining fields will end with <BR>
print OUTFILEHANDLE "<B> $_ <BR>\n<HR>\n"; # record separator wi
+ll be <HR>
}
}
close INFILEHANDLE;
close OUTFILEHANDLE;
print "\nFile table.html created (press a key)\n";
$line = <STDIN>;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.