[
Lists Home |
Date Index |
Thread Index
]
> I know that such tools would only work with simpler tables, because spanned
> entries, wrapped entries, and other fancy table tricks would cause problems,
> but I thought that there must be something out there, and I can't find
> anything. Any suggestions?
pretty much any text editing tool ought to be able to do this, certainly
anything with regular expressions (sed, perl, emacs, XSLT2, ...)
eg just typing some sed on to the command line:
$ sed -e "s@\(...\)\(.*\)@<tr><td>\1</td><td>\2</td></tr>@" <<XX
> 1 2
> a b
> XX
produces:
<tr><td>1 </td><td>2 </td></tr>
<tr><td>a </td><td>b </td></tr>
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|