Convert .odt to plain text in C # [closed]

1

Is there a way to convert an OpenDocument file (odt, ods, odp) to plain text in C #?

I've been searching for days and I have not found anything that is free.

    
asked by César 02.11.2016 в 12:43
source

1 answer

1

You should use a library that allows access to the information in this document:
link

As you will see in the section, there are several that you can use, such as ODF.net or Aspose.Words . With these libraries you can access the content.

You can reference these libraries using nuget:
ODF .NET

You have many examples to learn how to use the library.

odf tutorial

    
answered by 02.11.2016 в 14:03