in reply to conversion from doc to html

This as simple as I could make it for you. Using:

Text::FromAny
HTML::FromText
#!/usr/bin/perl -slw use strict; use warnings; use Text::FromAny; use HTML::FromText (); my $any = Text::FromAny->new(file => 'test-basic.doc'); my $text = $any->text; my $t2h = HTML::FromText->new({ paras => 1 }); my $html = $t2h->parse( $text ); print $html;

Replies are listed 'Best First'.
Re^2: conversion from doc to html
by srocks (Initiate) on Dec 07, 2011 at 07:14 UTC

    ..It is not working on machine... Showing this type of mesage Can't locate Text/FromAny.pm in @INC (@INC contains: C:/strawberry/perl/site/lib C:/strawberry/perl/vendor/lib C:/strawberry/perl/lib .) at sample_html.pl line 5. BEGIN failed--compilation aborted at sample_html.pl line 5. please confirm it and let me know ..

      So why don't you install the missing module?