xml::Twig 句柄
是否可以告诉 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定这是否是您正在寻找的,但如果您只想对不同的标签使用相同的处理程序,您应该能够这样做:
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: