在一个文件夹用perl替换为多个XML文件值(Replace values for multiple

2019-10-18 02:56发布

我有一个文件夹中的多个XML文件“C:\作者Srini \ Perl的\中\” ......所有这些文件都是一样的......我需要寻找每个XML两个标签,如果该标签值的结构为“@@@”在它...它必须用“&” ...它必须检查两个标记值SHORT_DESC和XXX_NAME ......如果任何变量值的有“@@@”代替..它必须与“&” ..下面是XML文件替换....

<TOPHEADER>
<HEADER>
<NAME>ABC LTD</NAME>
<SHORT_DESC>ABC COMPY @@@ LTD</SHORT_DESC> 
<XXX_NAME>ABC COMPANY FOR XXX AND YYY </XXX_NAME> 
</HEADER>
<HEADER>
<NAME>XYZ LTD</NAME>
<SHORT_DESC>XYZ COMPY @@@ LTD</SHORT_DESC> 
<XXX_NAME>XYZ COMPANY FOR @@@</XXX_NAME> 
</HEADER>
<HEADER>
<NAME>DEF LTD</NAME>
<SHORT_DESC>DEF COMPY AND LTD</SHORT_DESC> 
<XXX_NAME>DEF COMPANY FOR @@@</XXX_NAME> 
</HEADER>
</TOPHEADER>

我使用下面的代码替换为一个单一的文件标记值..但想知道是否有更好的方式来处理多个文件....

open (my $input_file, '<', 'c:\srini\perl\in\test1.xml') or die "unable to open $input_file $!\n";
open (my $output_file, '>', 'c:\srini\perl\in\test1_out.xml') or die "unable to open $output_file $!\n";

my $input;
{
local $/;               #Set record separator to undefined.
$input = <$input_file>; #This allows the whole input file to be read at once.
}
$input =~ s/@@@/&/g;

print {$output_file} $input;

close $input_file or die $!;
close $output_file or die $!;

Answer 1:

你意识到你的输出不会是有效的XML吧? 在与需要XML转义。 希望这只是一个例子,而不是真正的价值。

这就是说,我希望使用XML ::嫩枝要做到这一点“的方式XML”™,例如,这是非常简单的:

#!/usr/bin/perl

use strict;
use warnings;

use XML::Twig;

my $dir= shift @ARGV or die "usege: $0 <dir>\n";

foreach my $file ( glob( "$dir/*.xml"))
  { XML::Twig->new( twig_roots => { SHORT_DESC => \&replace, # only those elements will be checked
                                    XXX_NAME   => \&replace,
                                  },
                    twig_print_outside_roots => 1,           # the rest will be output as-is
                    keep_spaces => 1,
                  )
             ->parsefile_inplace( $file);                    # the original file will be updated
  }

exit;

sub replace
  { my( $t, $elt)= @_;
    $elt->subs_text( qr/@@@/, '&')->print;
  }

输出将被良好的XML(即it will look like <SHORT_DESC>ABC COMPY &amp; LTD</SHORT_DESC> 如果你确实需要和不进行转义,在子行应该是$elt->subs_text( qr/@@@/, '&')->set_asis( 1)->print; ,调用set_asis防止元素的文本进行转义。

确保你的原始XML是虽然良好的,否则它将不会被处理(你虽然不会丢失数据)。



Answer 2:

opendir / readdir / closedir功能让我们通过遍历directoy的文件systemobjects:

my $dir = ***dir goes here***;
my $d = opendir();
map {
    if (
        -f "$dir/$_"
        && ($_ =~ "\.xml$")
    ) {
        open (my $input_file, '<', ) or die "unable to open $input_file $!\n";

        my $input;
        {
            local $/;               #Set record separator to undefined.
            $input = <$input_file>; #This allows the whole input file to be read at once.
        }
        close $input_file;

        $input =~ s/@@@/&/g;

        open (my $output_file, '>', "$dir/$_") or die "unable to open $output_file $!\n";
        print {$output_file} $input;

        close $output_file or die $!;
    }
} readdir($d);
closedir($d);


文章来源: Replace values for multiple XML files in a folder using perl
标签: xml perl replace