Irfan.
Irfan.
Hi<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Thanks for your inquiry. Yes, of course you can convert Word documents to plain text using Aspose.Words. Please see the following link to learn how you can achieve this.
Best regards.
Hi buddies, one question related this topic,
is it possible to convert HTML text to plain text using aspose word?
Best Regards
Hi<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Thanks for your request. I think you can try using the following code to achieve this.
string html = "this is html string";
//Create Document and DocumentBuilder
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder();
//Insert html into the document
builder.InsertHtml(html);
//Get text from the document
string text = doc.ToTxt();
Hope this helps.
Best regards.