我正在尝试迭代Word文档并从中提取脚注,并引用它们在段落中的位置。
我不知道该怎么做。
我看到为了获得所有脚注,我可以做这样的事情:
FootnotesPart footnotesPart = doc.MainDocumentPart.FootnotesPart;
if (footnotesPart != null)
{
IEnumerable<Footnote> footnotes = footnotesPart.Footnotes.Elements<Footnote>();
foreach (var footnote in footnotes)
{
...
}
}
但是,我不知道怎么知道每个脚注在段落中的位置。
例如,我想要一个脚注,并将其放在文本中的括号内,以前是脚注
我该怎么做?
答案 0 :(得分:4)
您必须找到与FootnoteReference
具有相同ID的FootNote
元素。这将为您提供脚注所在的Run
元素。
示例代码:
FootnotesPart footnotesPart = doc.MainDocumentPart.FootnotesPart;
if (footnotesPart != null)
{
var footnotes = footnotesPart.Footnotes.Elements<Footnote>();
var references = doc.MainDocumentPart.Document.Body.Descendants<FootnoteReference>().ToArray();
foreach (var footnote in footnotes)
{
long id = footnote.Id;
var reference = references.Where(fr => (long)fr.Id == id).FirstOrDefault();
if (reference != null)
{
Run run = reference.Parent as Run;
reference.Remove();
var fnText = string.Join("", footnote.Descendants<Run>().SelectMany(r => r.Elements<Text>()).Select(t => t.Text)).Trim();
run.Parent.InsertAfter(new Run(new Text("(" + fnText + ")")), run);
}
}
}
doc.MainDocumentPart.Document.Save();
doc.Close();