Perl 打开 word 文档并修改内容-Perl-程序员之家
#!/usr/bin/perl use warnings; use strict; use Win32::OLE; chomp( my $line = <STDIN> ); my $word = new Win32::OLE( "Word.Application" ) ...
OLE Perl 打开 word 文档并修改内容 - 为程序员服务
#!/usr/bin/perl use warnings; use strict; use Win32::OLE; chomp( my $line = <STDIN> ); my $word = new Win32::OLE( "Word.Application" ) ...
Perl 读取 word 文档并打印 - 开源中国社区
#!/usr/bin/perl -w use Win32::OLE; $filename = 'wordFile.doc'; $doc = Win32::OLE->GetObject( $filename ) or die "Cannot load file $filenam...
Word and PERL
Word and PERL Note: I have started to move some scripts and source code from this website to GitHub. This affects some or all of the scripts found...
想用perl处理word
标题: 想用perl处理word 发信站: 水木社区 (Thu Dec 1 15:38:05 2016), 站内 有个word文件,里面有特定字符需要用外部变量值替换。用ole处理后的文档格式...