in reply to Any perl module or perl code to convert RTF docs/ MS word Docs to html under unix

There is a module RTF::HTML::Converter that can convert RTF docs to HTML:
use strict; use RTF::HTML::Converter; my $object = RTF::HTML::Converter->new( output => \*STDOUT); $object->parse_stream( \*RTF_FILE );

-Mark

  • Comment on Re: Any perl module or perl code to convert RTF docs/ MS word Docs to html under unix
  • Download Code