我正在尝试通过代码将MS Word表格转换为HTML。我正在调整this answer中给出的一些代码,但我需要生成的HTML表最终转换为CALS表格式,然后与我的程序生成的现有XML树合并。
我目前正在进行从Word表到HTML表格部分的转换(在将其转换为CALS之前)但我的问题似乎是一个反复出现的错误,其中说:
hexadecimal value 0x07, is an invalid character
果然,如果我在程序运行时通过messageBox查看表格中每个单元格生成的HTML,我可以看到表格单元格中的文本后面有一个小“框”。
我尝试过使用类似
的内容string newContent = content.Replace((char)(0x1F), Convert.ToChar(""));
替换字符,但它会抱怨字符串必须是一个字符长。
在我试图将HTML存储在XElement中的意义上,我可能会以错误的方式处理事情。但我不认为这会导致问题?!
问题显然是Word表格单元格中的小“框”,但不确定它是什么或如何忽略或删除它。
这是我的代码
private void dealWithTables()
{
try
{
foreach (Table tb in doc.Tables)
{
for (int r = 1; r <= tb.Rows.Count; r++)
{
for (int c = 1; c <= tb.Columns.Count; c++)
{
try
{
Cell cell = tb.Cell(r, c);
foreach (Paragraph paragraph in cell.Range.Paragraphs)
{
Tagging2(paragraph.Range, "P", paragraph.Range.Text);
}
Tagging2(cell.Range, "TD");
}
catch (Exception e)
{
if (e.Message.Contains("The requested member of the collection does not exist."))
{
//Most likely a part of a merged cell, so skip over.
}
else throw;
}
}
try
{
Row row = tb.Rows[r];
Tagging2(row.Range, "TR");
}
catch (Exception ex)
{
bool initialTrTagInserted = false;
int columnsIndex = 1;
int columnsCount = tb.Columns.Count;
while (!initialTrTagInserted && columnsIndex <= columnsCount)
{
try
{
Cell cell = tb.Cell
(r, columnsIndex);
//cell.Range.InsertBefore("<TR>");
initialTrTagInserted = true;
}
catch (Exception e)
{
}
columnsIndex++;
}
columnsIndex = tb.Columns.Count;
bool endTrTagInserted = false;
while (!endTrTagInserted && columnsIndex >= 1)
{
try
{
Cell cell = tb.Cell(r, columnsIndex);
//cell.Range.InsertAfter("</TR>");
endTrTagInserted = true;
}
catch (Exception e)
{
}
columnsIndex--;
}
}
}
Tagging2(tb.Range, "Table");
object separator = "";
object nestedTable = true;
tb.ConvertToText(separator, nestedTable);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
XElement tableTree = new XElement("table");
public void Tagging2(Range range, string tagName, string content)
{
string newContent = content.Replace((char)(0x1F), Convert.ToChar(""));
tableTree.Add(new XElement(tagName, newContent));
MessageBox.Show("text of para " + newContent);
}
public void Tagging2(Range range, string tagName)
{
tableTree.Add(new XElement(tagName));
}
答案 0 :(得分:1)
似乎你用空字符串替换它,因此你的错误信息。尝试用空格替换它:
content.Replace((char)(0x07), (char)(0x20))