in reply to How can I create MS Word 2013 documents using Perl?

I would suggest using RTF::Writer and saving the output in a file with doc extension - if all you need is a file which your users can easily open using Word, this should be enough.

You can look at a similar question for some other suggestions.

regards,
Luke Jefferson

  • Comment on Re: How can I create MS Word 2013 documents using Perl?

Replies are listed 'Best First'.
Re^2: How can I create MS Word 2013 documents using Perl?
by shajiindia (Acolyte) on Jul 30, 2014 at 12:41 UTC
    Hi Luke,

    This solution (using RTF::Writer) solved my problem in MS Word 2013.

    Thank you.