xml::Twig 句柄

发布于 2024-12-08 20:08:15 字数 598 浏览 1 评论 0原文

是否可以告诉 xml::twig 句柄仅解析非嵌套标签?

例如,是否可以使用下面的代码在同一处理程序下处理 tag1、tag2、tag3 并在不同的处理程序上处理 tag4,或者我需要每个标签的处理程序

<tags>
<start>
<tag1> a <\tag1>
<tag2> a <\tag2>
<tag3> a <\tag3>
<tag4 att=2>
   <tag6> a <\tag6>
   <tag7> a <\tag7>
<\tag4>
<\start>
<start>
...
<\start>
..
<\tags>




my $t = XML::Twig->new(
twig_handlers => { 'tag1 tag2 tag3' => \&handler1 
                    'tag4' => \&handler2

});

我的意思是嵌套标签和非嵌套标签之间是否可能有所不同?

is it possible to tell the xml::twig handle to to parse only non nested tags?

i.e for example is it possible with the below code to proccess tag1,tag2,tag3 under the same handler and treat tag4 on differnet handler or i need handler for every tag

<tags>
<start>
<tag1> a <\tag1>
<tag2> a <\tag2>
<tag3> a <\tag3>
<tag4 att=2>
   <tag6> a <\tag6>
   <tag7> a <\tag7>
<\tag4>
<\start>
<start>
...
<\start>
..
<\tags>




my $t = XML::Twig->new(
twig_handlers => { 'tag1 tag2 tag3' => \&handler1 
                    'tag4' => \&handler2

});

I mean if its possible to differ between nested and non nested tag ?

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

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

发布评论

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

评论(1

忆依然 2024-12-15 20:08:15

我不确定这是否是您正在寻找的,但如果您只想对不同的标签使用相同的处理程序,您应该能够这样做:

twig_handlers => {
    'tag1' => \&handler1,
    'tag2' => \&handler1,
    'tag3' => \&handler1,
    'tag4' => \&handler2
}

I'm not sure if this is what you're looking for, but if you just want to use the same handler for different tags, you should be able to do this:

twig_handlers => {
    'tag1' => \&handler1,
    'tag2' => \&handler1,
    'tag3' => \&handler1,
    'tag4' => \&handler2
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文