gpt4 book ai didi

xml - Mojo::DOM 是否提供使用嵌套语法的可能性?

转载 作者:数据小太阳 更新时间:2023-10-29 02:19:41 26 4
gpt4 key购买 nike

如何使用 Mojo::DOM 模块编写此示例?

#!/usr/bin/env perl
use warnings;
use 5.012;
use XML::LibXML;

my $string =<<EOS;
<result>
<cd>
<artists>
<artist class="1">Pumkinsingers</artist>
<artist class="2">Max and Moritz</artist>
</artists>
<title>Hello, Hello</title>
</cd>
<cd>
<artists>
<artist class="3">Green Trees</artist>
<artist class="4">The Leons</artist>
</artists>
<title>The Shield</title>
</cd>
</result>
EOS
#/
my $parser = XML::LibXML->new();
my $doc = $parser->load_xml( string => $string );
my $root = $doc->documentElement;

my $xpath = '/result/cd[artists/artist[@class="2"]]/title';

my @nodes = $root->findnodes( $xpath );
for my $node ( @nodes ) {
say $node->textContent;
}

最佳答案

Mojo::DOM 支持 CSS3 选择器,这很了不起,但不如 xpath 通用; CSS3 不提供在下降到节点后上升的方法。

您可以完成同样的事情,尽管涉及更多:

Mojo::DOM->new($string)
->find('result:root > cd > artists > artist.2')
->each(sub { say shift->parent->parent->title->text });

say $_->parent->parent->title->text
for Mojo::DOM->new($string)
->find('result:root > cd > artists > artist.2')->each;

关于xml - Mojo::DOM 是否提供使用嵌套语法的可能性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8588542/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com