微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

perl 操作xml实例

1.  用XML::Simple来写xml代码如下:

#!perl -w
use strict;
  use warnings;
  use XML::Simple;

my $str = <<XML_STRING_;
<config logdir="/var/log/foo/" debugfile="/tmp/foo.debug">
       <server name="sahara" osname="solaris" osversion="2.6">         
       		<address>10.0.0.101 </address>         
       		<address>10.0.1.101 </address>       
       </server>       
       <server name="gobi" osname="irix" osversion="6.5">         
       		<address>10.0.0.102 </address>       
       	</server>       
</config> 
XML_STRING_
    

my $xml_ref=XMLin($str,ForceArray => 1,KeepRoot => 1);  
use Data::Dumper;
print(Dumper($xml_ref));
my $xml_str=XMLout($xml_ref,rootname => 'enter_rootname_here');
print("$xml_str\n");

打印效果如下:

2. perl heredoc 在windows上的故障解决

Why do I get an error using Perl's here-doc syntax (<<),that says "Can't find string terminator anywhere before EOF"?

This is a weird error that occurs when your string terminator is on the last line of your script. With a script like:

    print <<"END";
    The snake is old,and his skin is cold.
    END

perl is looking for the word END on a line by itself,followed by a line-Feed character (\n). If the END is the last line of your script,you have to remember to hit <Enter> after the word END,so that Perl can recognize it as the string terminator.

Most UNIX text editors will do this automatically. Most Windows text editors won't. Thus the problem.

Note that this can also cause a problem with Perl formats,since these are terminated with a single . on a line by itself. However,it's much more rare,since programmers often specify the format for output at the top rather than at the bottom of a file.

 

 

3. 通过simplexml 模板,输出xml时的 <;> 有错误,后面采用直接输出txt文件内容为 “<root>...</root>”的形式,感觉比较简单

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐