perl 用 XML::Parser 解析 XML文件,访问哈希

本篇我们会看到 Perl 成为知名编程语言的关键特色--哈希 hash(2000年以前叫:关联数组)。

在Perl 中,可以使用各种模块和函数来解析 XML元素和属性。其中,最古老的模块是 XML::Parser,它提供了一组完整的XML解析和处理函数,可以解析XML文档中的元素和属性。

例如,下面是一个使用 XML::Parser 模块解析 XML元素和属性 的示例代码:

编写 xml_parser_tree.pl 如下

perl 复制代码
#!/usr/bin/perl
use 5.010;
use strict;
use warnings;
use utf8;
use XML::Parser;
use Data::Dumper;

if ($#ARGV != 0){
    die "You must specify a file.xml to parse";
}
my $file = shift @ARGV;
# Tree 风格比较难用,它的数据结构不符合标准的JSON.
my $p = XML::Parser->new(Style => 'Tree',
        Handlers => {Start => \&start, End => \&end_, Char => \&text});
my $tree = $p->parsefile($file) 
            or die "cannot read file.xml\n";
#print Dumper($tree);

my $f2 = $file .'.txt';
# 写入文件
open(my $fw, '>:encoding(UTF-8)', $f2) or die "cannot open file '$f2' $!";
my @array;
# 访问 hash
sub start { 
    my ($self, $tag, %attribs) = @_;
    if ($tag eq 'node'){
        push @array, $attribs{'TEXT'};
    }
}
sub end_ {
    my ($self, $tag) = @_;
}
sub text {
    my ($self, $text) = @_;
}
my $ln =0; # 行数
foreach my $txt (@array){
    print $fw $txt ."\n";
    $ln++;
}
close($fw);
print $ln;

运行 perl xml_parser_tree.pl your_test.xml

编写 xml_parser_subs.pl 如下

perl 复制代码
#!/usr/bin/perl
use 5.010;
use strict;
use warnings;
use utf8;
use XML::Parser;
#use Data::Dumper;

if ($#ARGV != 0){
    die "You must specify a file.xml to parse";
}
my $file = shift @ARGV;
# Subs 风格比较容易使用,它需要对应于标签名定义子程序
my $p = XML::Parser->new(Style => 'Subs',
        Handlers => {Char => \&text});
my $doc = $p->parsefile($file) 
            or die "cannot read file.xml\n";
say '$doc is a ', $doc;

my $f2 = $file .'.txt';
# 写入文件
open(my $fw, '>:encoding(UTF-8)', $f2) or die "cannot open file '$f2' $!";
my @array;
# 访问 hash
sub node { 
    my ($self, $tag, %attribs) = @_;
    push @array, $attribs{'TEXT'};
}
sub node_ {
    my ($self, $tag) = @_;
}
sub text {
    my ($self, $text) = @_;
}
my $ln =0; # 行数
foreach my $txt (@array){
    print $fw $txt ."\n";
    $ln++;
}
close($fw);
print $ln;

运行 perl xml_parser_subs.pl your_test.mm

参阅:XML::Parser - A perl module for parsing XML documents - metacpan.org

相关推荐
血战灬狂龙3 小时前
pom.xml文件加载后没有变成maven图标
xml·java·maven
熬夜修钩9 小时前
云技术与机器人源码:云计算在自动化软件开发中的融合
开发语言·perl
concisedistinct15 小时前
Perl 语言开发(四):条件语句
开发语言·后端·perl
菜鸟得菜15 小时前
MAVEN中settings.xml文件中,<mirrors> 元素怎么写?
xml·java·maven
我的运维人生17 小时前
Perl 语言入门学习指南:探索高效脚本编程的奥秘
perl·脚本语言·文本处理·perl编程·perl基础语法
2401_8581205319 小时前
掌握Perl的钥匙:深入探索命令行参数的艺术
开发语言·perl
concisedistinct19 小时前
Perl 语言开发(六):深入探索 Perl 中的数组与列表操作
开发语言·后端·perl
zhu_zhu_xia21 小时前
js使用插件完成xml转json
xml·json
2401_857638031 天前
【Perl CGI脚本全解析】打造动态Web应用的秘籍
前端·scala·perl
wangyue42 天前
Perl 语言入门学习
perl