Anmerkung: Die Verfahrensweise ist anrüchig.
Neuere Excel-Tabellen sind
XML-Dokumente, eingepackt in ein ZIP-Archive. Besorg Dir die Beschreibung und los gehts. Wenn Du allerings eine bestehende Formatierung beibehalten willst, wird das sicherlich sehr aufwendig.
Beispiel:
Code:
<
html xmlns:o="urn:schemas-microsoft-
com:office:office" xmlns:x="urn:schemas-microsoft-
com:office:excel" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/
html; charset=windows-1252">
<!--[if gte mso 9]><
xml>
<x:ExcelWorkbook>
<x:ExcelWorksheets>
<x:ExcelWorksheet>
<x:Name>Sheet1</x:Name>
<x:WorksheetOptions>
<x:Selected/>
<x:Panes>
<x:Pane>
<x:Number>3</x:Number>
<x:ActiveRow>3</x:ActiveRow>
</x:Pane>
</x:Panes>
<x:ProtectContents>False</x:ProtectContents>
<x:ProtectObjects>False</x:ProtectObjects>
<x:ProtectScenarios>False</x:ProtectScenarios>
</x:WorksheetOptions>
</x:ExcelWorksheet>
</x:ExcelWorksheets>
</x:ExcelWorkbook>
</
xml><![endif]-->
</head>
<body>
<table x:str>
<tr>
<td x:num width=64>100</td>
</tr>
<tr>
<td x:num>567</td>
</tr>
<tr>
<td x:num>333</td>
</tr>
</table>
</body>
</
html>