OPENXML - 遍历一个段落的运行,并查找是否运行有斜体或粗体文字(OpenXml - ite

2019-09-17 06:46发布

我想通过一段运行迭代,发现如果运行已italized /粗体文字,代之以别的文本。

这是在性能方面的最佳方法。

Answer 1:

如果你有兴趣只在内嵌标签,下面的代码可以提供帮助。 只要改变任何你想要转换()方法。

using System.Linq;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Wordprocessing;

class Program
{
    static void Main(string[] args)
    {
        using (var doc = WordprocessingDocument.Open(@"c:\doc1.docx", true))
        {
            foreach (var paragraph in doc.MainDocumentPart.RootElement.Descendants<Paragraph>())
            {
                foreach (var run in paragraph.Elements<Run>())
                {
                    if (run.RunProperties != null &&
                        (run.RunProperties.Bold != null && (run.RunProperties.Bold.Val == null || run.RunProperties.Bold.Val) ||
                        run.RunProperties.Italic != null && (run.RunProperties.Italic.Val == null || run.RunProperties.Italic.Val)))
                        Process(run);
                }
            }
        }
    }

    static void Process(Run run)
    {
        string text = run.Elements<Text>().Aggregate("", (s, t) => s + t.Text);
        run.RemoveAllChildren<Text>();
        run.AppendChild(new Text(Convert(text)));

    }

    static string Convert(string text)
    {
        return text.ToUpper();
    }
}


Answer 2:

这取决于你是否要计算从风格继承粗体/斜体或处于串联粗体/斜体标签只是感兴趣。



文章来源: OpenXml - iterate through a paragraph's runs and find if a run has italic or bold text