nice little utility sub, but i think you'll find this code's a bit cleaner.

note there's no need to check for OLE errors once Warn is set to die on errors. also, i think these comments are a bit friendlier.

use Win32::OLE qw(in with); ## avoid warnings while loading Win32::OLE::Const module { no warnings; use Win32::OLE::Const 'Microsoft Word' } ## WordToText - Convert a microsoft word file to a plain text file ## ## Example: my $status = WordToText( $infile, $outfile ); ## ## $infile - absolute path to word document input ## $outfile - absolute path to text file output ## ## returns 1 on success, dies on errors sub WordToText { my( $infile, $outfile ) = @_; die( (caller(0))[3] . ": invalid args" ) unless defined $outfile; ## make word die on errors $Win32::OLE::Warn = 3; ## create a word object my $Word = Win32::OLE->GetActiveObject( 'Word.Application' ) || Win32::OLE->new( 'Word.Application', 'Quit' ); ## open the word document my $WordFile = $Word->Documents->Open( $infile ); ## make word invisible $Word->{Visible} = 0; ## perform 'save as' in text mode (2) $Word->WordBasic->FileSaveAs( $outfile, 2 ); ## close the file $WordFile->Close(); return 1; }

~Particle *accelerates*


In reply to Re: Convert MSWord to Text by particle
in thread Convert MSWord to Text by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.