我需要使用openxml sdk过滤表列的内容(在MS-word文档中)。我可以使用reference = tablerow.ElementAt<OpenXmlElement>(0).InnerText
我需要做的是将列的内容分成多个字符串,例如: 柱
abcd
efgh
我使用abcdefgh
reference = tablerow.ElementAt<OpenXmlElement>(0).InnerText
我需要的是将abcd
和efgh
分成不同的字符串。
这是我正在使用的一段代码:
foreach (Table table in tables)
{
foreach (TableRow tablerow in table.Descendants<TableRow>())
{
reference = tablerow.ElementAt<OpenXmlElement>(0).InnerText
}
}