Find the specific text in paragraph that text should be starting of the paragraph and copy that paragraph to other document in Aspose.Words c#

Find the specific text in paragraph that text should be starting of the paragraph and copy that paragraph to other document in Aspose.Words c# .Could you please help me for that.

@Yuvarajshivananjappa You can either use find/replace feature as I suggested you in another your thread:
https://forum.aspose.com/t/find-the-specific-text-in-paragraph-and-copy-that-paragraph-to-other-document-in-aspose-words-c/251104
Or simply loop through the paragraphs in your document and check whether paragraph starts with a specific text:

Document doc = new Document(@"C:\Temp\in.doc");

// Get paragraphs that starts with "TEST".
List<Paragraph> paragraphs = doc.GetChildNodes(NodeType.Paragraph, true)
    .Cast<Paragraph>().Where(p => p.ToString(SaveFormat.Text).Trim().StartsWith("TEST")).ToList();

foreach (Paragraph p in paragraphs)
{
    // Do somethong with paragraphs selected from the document.
}