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
}
}