xml::Twig 和 findnodes

发布于 2024-12-08 20:03:11 字数 494 浏览 1 评论 0原文

我有以下 xml 代码片段:

<a>
  <b> textb <b>
  <c> textc <c>
  <d> textd <d>
<\a>
<a>
  <b> textb <b>
  <c> textc <c>
  <d> textd <d>
<\a>

我使用 xml::twig 对其进行解析,如下所示:

my @c= map { $_->text."\n" } $_->findnodes( './a/');

并将 textbtextctextd 作为数组的一个元素。是否有一个选项可以使用 findnodes textb,textc,textd 作为 3 个数组元素而不是一个?

I have the following xml code snippet :

<a>
  <b> textb <b>
  <c> textc <c>
  <d> textd <d>
<\a>
<a>
  <b> textb <b>
  <c> textc <c>
  <d> textd <d>
<\a>

I use xml::twig to parse it as below :

my @c= map { $_->text."\n" } $_->findnodes( './a/');

and get the textbtextctextd as one element of the array. Is there an option to get with findnodes
textb,textc,textd as 3 array elements and not one?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏末的微笑 2024-12-15 20:03:11

在表达式末尾使用星号:

$_->findnodes( './a/*');

*”匹配任何标记,因此您将获得 3 个子节点 - 您当前的示例仅匹配“a”,其文本是以下内容的串联嵌套元素的文本。

Use the star at the end of the expression:

$_->findnodes( './a/*');

The '*' matches any tag, so you get the 3 child nodes - your current example only matches the 'a', and its text is the concatenation of the text of the nested elements.

毁梦 2024-12-15 20:03:11

在 XML::Twig 3.39(及更高版本)中,您可以使用 findvalue 获取字符串数组。

my @c = $_->findvalue('./a/');

in XML::Twig 3.39 (and above) you can use findvalue to get an array of strings.

my @c = $_->findvalue('./a/');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文