How can I process RTF-encoded files and convert them to XML?

I never did a huge amount of RTF processing, I always used the library to read or generate one, and that was a long time ago. Now I need to adapt to the format again and eventually convert it to XML.

Can you recommend a good way to do this so that I have a lot of control over the analysis and processing of RTF fragments?

Initially, I think Perl plus some good libraries would be a good choice, but all opinions are welcome.

+7
xml regex perl rtf
source share
2 answers

RTF Guide ? Seriously though, fast google reveals all kinds of tools and libraries. Why reinvent the wheel?

+4
source share

ScroogeXHTML, a library for converting RTF to HTML / XHTML, is available for the Java (tm) and Delphi platforms. Demo version and online API documentation are available on this page:

http://www.mikejustin.com/

or

http://www.betabeans.de/

0
source share

All Articles