// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git. Document doc = new Document(MyDir + "Extract content.docx"); Paragraph para = (Paragraph) doc.GetChild(NodeType.Paragraph, 7, true); Run startRun = para.Runs[1]; Run endRun = para.Runs[4]; // Extract the content between these nodes in the document. Include these markers in the extraction. List<Node> extractedNodes = ExtractContentHelper.ExtractContent(startRun, endRun, true); foreach (Node extractedNode in extractedNodes) Console.WriteLine(extractedNode.ToString(SaveFormat.Text));