Hi Monks,
I thought somebody might be interested in mine http://dataoniphone.sourceforge.net/
It is in Perl (it's quite simple but it works).
gok8000
Here it is a sample. But please look into Sourceforge if you really want to use it. Greetings!
#!/usr/bin/perl # # http://sourceforge.net/projects/dataoniphone/ V 0.9 04/08/2008 17:02 +: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 line } 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 will + be <HR> } } close INFILEHANDLE; close OUTFILEHANDLE; print "\nFile table.html created (press a key)\n"; $line = <STDIN>;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: From tabbed text to HTML splitting the lines
by toolic (Bishop) on Aug 12, 2008 at 17:35 UTC | |
|
Re: From tabbed text to html splitting the lines
by jettero (Monsignor) on Aug 12, 2008 at 18:22 UTC | |
|
Re: From tabbed text to HTML splitting the lines
by omouse (Initiate) on Sep 02, 2008 at 06:16 UTC | |
by gok8000 (Scribe) on Sep 02, 2008 at 16:03 UTC |