Perl 打开 word 文档并修改内容

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

#!/usr/bin/perl

use warnings;
use strict;
use Win32::OLE;

chomp( my $line = <STDIN> );

my $word = new Win32::OLE( "Word.Application" )
   or die( "Error opening a document in Word: $!" );

$word->{ Visible } = 1;
$word->Documents->Add();
$word->Selection->Font->{ Size } = 100;
$word->Selection->Font->{ SmallCaps } = 1;
$word->Selection->Font->{ Animation } = 3;   # sparkle text 
$word->Selection->TypeText( $line );