我需要在子元素中插入一个子元素。我有两个孩子,第一个孩子剪切并粘贴到第二个孩子作为第一个孩子插入。
xml:
<fn id="fn1_1">
<label>1</label>
<p>The distinguished as &#x2018;bisexuation.&#x2019;</p>
</fn>
我试过
sub fngroup{
my ($xml_twig_content, $fn_group) = @_;
@text = $fn_group->children;
my $cut;
foreach my $fn (@text){
$cut = $fn->cut if ($fn->name =~ /label/);
if ($fn =~ /p/){
$fn->paste('first_child', $cut);
}
}
}
我无法处理它。如何剪切标签并将标签标签粘贴到 p 标签作为 first_child。
我需要:
<fn id="fn1_1">
<p><label>1</label> The distinguished as &#x2018;bisexuation.&#x2019;</p>
</fn>