XML::Twig - A Perl module for processing XML documents.
2
votes
2answers
39 views
How to replace XML property name value
I have the following XML:
<resources xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<resource id="kig" type="com.ac.resourcedata.xml" site="ki">
<property ...
1
vote
1answer
38 views
XML Twig doesn't indent new added elements?
relevant part of the XML looks like
<?xml version="1.0" encoding="UTF-8"?>
<key name="home">
<entry name="default">zzzzz</entry>
<key ...
1
vote
1answer
46 views
XML::Twig.pm vs XML::Twig.pm.slow is this an internal CPAN difference?
Searching XML + Twig under the all option produces two results for Xml::Twig.
In the listings they are shown as XML::Twig but the link itself differs by the suffix .slow on one of these.
Is there a ...
1
vote
3answers
46 views
XML Twig always editing the XML
I'm sure I'm not using it correctly, my code:
#!/usr/bin/env perl
use strict;
use warnings;
use XML::Twig;
XML::Twig->new( pretty_print => 'indented',
twig_handlers => { ...
1
vote
2answers
92 views
Performance issue using XML::Twig to process gigantic files (>10 GB)
I have to process a huge XML file (>10 GB) to convert it to CSV. I am using XML::Twig.
The file contains data of around 2.6 million customers, each of which will have around 100 to 150 fields ...
1
vote
1answer
110 views
Perl XML::Twig. Gigantic files processing. How to handle repeated enteries & enteries which are not present
I have a gigantic XML file (around 10 Gb) which i need to convert to CSV. Now this file would have information about numerous customers. I have to convert it a CSV format. The problem is that many ...
1
vote
1answer
83 views
Outputting XML::Twig object contents
As an example, I have a Perl XML::Twig object $xmlDef, which contains the following:
<ROOT>
<CHILD>
</CHILD>
</ROOT>
It's generated with the following code:
my ...
0
votes
2answers
113 views
Copy XML value using XML twig perl
I have a nested XML tags and need to have the value of ExternalId in Product XML to a ProductPageURL tag using XML Twig
<Products>
<Product>
...
5
votes
2answers
177 views
How to change XML to use empty-element tags?
I am new to XML::Twig. How can I change all empty elements to use empty-element tags (<foo/>) instead of a start-tag and end-tag combo (<foo></foo>)?
Input:
<book>
...
1
vote
2answers
198 views
How to add white space between two elements?
I new to xml twig, how can I add space between two elements in xml-twig?
Input:
<xml>
<fig id="fig6_4">
<label><xref ref-type="page" id="page_54"/>[Figure 4]</label>
...
4
votes
4answers
204 views
How can I speed up XML::Twig
I am using XML::Twig to parse through a very large XML document. I want to split it into chunks based on the <change></change> tags.
Right now I have:
my $xml = ...
1
vote
2answers
356 views
The file “Twig.xml” does not exist
I'm following the symfony2 tutorial and was trying to create the Twig filter extension in chapter 5 http://tutorial.symblog.co.uk/docs/customising-the-view-more-with-twig.html however, I'm not sure ...
0
votes
2answers
75 views
Store id global hash as keys
I need all xml id stored hash as key and values is always empty. How can I collect all id values store in global hash in twig.
xml:
xml:
<book>
<book-meta>
<p><xref ...
1
vote
1answer
82 views
how to insert child xml twig
I need insert a child in child element. I have two child, the first child cut and paste to second child insert as first child.
xml:
<fn id="fn1_1">
<label>1</label>
...
2
votes
2answers
97 views
how can I remove tag only
I need remove some tag only in xml file.
xml:
<p>Originally published <xref ref-type="bibr" rid="ref155">Klein, F. (1978)</xref> <i>Priam Books. Reproduced by permission of ...
2
votes
1answer
68 views
Escape entity in xml files
I am convert xml to xml file, I try to convert text as for source. I am currently using xml::Twig and I need output without any change in xml.
I Tried:
xml:
<book>
<book-meta>
...
2
votes
2answers
84 views
XML::Twig changes erased
The program below gives me weird output that I cannot explain:
use strict;
use warnings;
use XML::Twig;
my $xml =
q{<block>
<foo>bar baz</foo>
</block>};
my $twig = ...
2
votes
1answer
48 views
How can I get tag content with other tags with XML::Twig?
#!/usr/bin/perl
use strict;
use warnings FATAL => 'all';
use 5.010;
use XML::Twig;
sub get_xml_from_data {
my @lines = <DATA>;
my $xml = join "", @lines;
return $xml;
}
sub ...
1
vote
2answers
98 views
what are restrictions on using parse in xml-twig to parse xml string
I am trying to use $twig->parse($xmlstring) to add id attribute to all xml elements in string. Each string is an element of an array that looks something like:
<classes name="Test::Class">
...
1
vote
1answer
90 views
how to get unkown root tag parse to function
i doing xml conversion, here i define root tag as book, but how to get unknow root tag define here, i need common syntex,
use twig;
my $story_file = XML::Twig->new(
...
0
votes
1answer
115 views
adding incremented id attribute to all elements
There is a XML-Twig example that shows how to add id attribute with incremented value to a specified element. Is there easy way to add incremented id to all elements.
#!/bin/perl -w
...
0
votes
1answer
166 views
Adding XML record into existing XML file using XML::Twig
I was trying to add a block of content under some xpath in the existing XML file. I was new to this XML parsing using Perl. But I was supposed to do using this XML::Twig.
Input :
<model ...
-1
votes
1answer
565 views
Change an XML attribute value using XML::Twig
I want to change an XML attribute value using XML::Twig. I can do this by using XML::LibXML like this
my $doc = XML::LibXML->new->parsefile();
my $xpath = '/model/@name';
...
2
votes
2answers
164 views
XML::Twig - Managing fields with same tag
I have a project that requires parsing complex XML data. I have decided to go with XML::Twig and it works really well for most part. I came across an issue where different pieces of information had ...
1
vote
1answer
111 views
Can $self be passed to a XML::Twig handler?
I'm trying to parse different XML that is returned depending on the command given in a class method... but I think I'm getting a bit deep here.
I'd like to be able to use other methods and access ...
0
votes
1answer
125 views
Unable to use the methods next_sibling or next_elt with twig_handlers using XML::Twig
I am still new with using XML::Twig.
From the main program I look for the elements with attribute @method="create"
In the subroutine player, I want to find the next element/sibling with attribute ...
2
votes
1answer
738 views
XML::Twig fails to install with cpan
I'm new to installing CGI modules. On my development machine I've use ppm to install modules. On my production server, I do not have ActivePerl and thus no ppm.
When I try to install XML::Twig with ...
2
votes
1answer
85 views
with my code, Perl::Twig is missing one parent node?
I am not sure if my code is faulty or if there is an issue with the XML::Twig 3.40.
The goal is to "change or add" the method="MODIF" to the parent of node "attributez"
file input.xml:
<?xml ...
0
votes
1answer
166 views
return the entire tag using xml::Twig
How can I return the entire xml tag using xml::twig and save it to array:
for example :
my @array=();
my $twig = XML::Twig->new(
twig_handlers => {
'data'=> sub {push @array, ...
2
votes
2answers
297 views
How to select siblings (xpath syntax) with Perl's XML::Twig?
I need to select the next node via next_sibling or first_elt. But I want to filter by node name (containing the string "TON")
first_elt ('HILTON[@method]' or 'SHERATON[@method]');
or
next_sibling ...
2
votes
1answer
254 views
Using XML::Twig, how to check that two nodes have exactly the same children and attributes?
Here is a short XML file with 2 nodes having the same children (but with 2 different values).
5000 for the node MIAMI
7777 for the node WASHINGTON
<country id="USA">
<city id="MIAMI" ...
3
votes
4answers
428 views
how to get the most deeply nested element nodes using xpath? (implementation with XMLTWIG)
I need to extract (XSLT, xpath, xquery... Preferably xpath) the most deeply nested element nodes with method (DEST id="RUSSIA" method="delete"/>) and his direct ancestor (SOURCE id="AFRICA" ...
1
vote
2answers
315 views
Using XML::Twig, how can I detect the last sibling?
Using Perl XML::Twig, how can I loop on each sibling until reaching the last node ?
while (condition_sibling_TWIG, $v)
{
$v=$v->next_sibling;
$v->print;
# process $v
}
Should the condition ...
1
vote
1answer
239 views
When using XML::Twig in Perl, the method “parent” returns also the children (not wanted)
I need to display the "parent" from the first Element of input.xml
Also I must display the id from the parent
Here is my script Perl: C:\lng> C:\lng\uniq.pl
The output is displaying ...
2
votes
2answers
122 views
How to display ancestors with XML::Twig?
I do not know how to display the ancestors_or_self of one Element.
Here is the error message I get when using the method ancestors_or_self():
Can't call method "print" without a package or object ...
2
votes
2answers
435 views
Parsing PubMed XML to submit to mySQL database (XML::Twig)
I'm new to XML::Twig, and I'm trying to parse a PubMed XML 2.0 esummary final to place into a mySQL database. I've gotten this far:
#!/bin/perl -w
use strict;
use DBI;
use XML::Twig;
my $uid = "";
...
3
votes
2answers
274 views
Fixing HTML attribute values with double quotes in them
I have a set of HTML files with illegal syntax in the href attribute of <a> tags. For example,
<a name="Conductor, "neutral""></a>
or
<meta name="keywords" ...
1
vote
1answer
254 views
Perl XML::Twig Update XML file with another XML
Here's my problem, i need to update an xml file using another xml
Data.xml :
<?xml version='1.0'?>
<employees>
<employee>
...
1
vote
1answer
166 views
how to configure XML::Twig with bugzilla?
I want to import bugs in bugzilla db from xml file and i got error message after run the following command.
perl -T C:\bugzilla\bugzilla\importxml.pl -v C:\bugzilla\bugzilla\mybugs\bug.xml
"ERR: can ...
1
vote
1answer
725 views
How to create XML with XML::Twig containg a namespace declaration and prefixed names?
I am creating a new XML document from scratch using XML::Twig. The root element should have a prefix and a namespace declaration. All children should also belong to this namespace and use this prefix.
...
1
vote
2answers
262 views
XML::Twig - Search and Add a line
I am new to Perl and this is my first Perl program, I have a XML file that I need to edit with some type of automation:
<Host appBase="webapps"
unpackWARs="true"
autoDeploy="true"
...
1
vote
2answers
357 views
XML::Twig: is parsefile() more efficient than parse()?
I've written a fairly basic webapp in Perl and it processes XML files using XML::Twig. These XML files are fairly large and complex, so I'm deliberately using the chunk by chunk varient of XML::Twig ...
0
votes
1answer
326 views
Perl XML::Twig doesn't escape double quotes
I wrote a small script, which parses a XML-file, deletes some redundant elements and writes the rest back to a new XML-file using $xml->print_to_file();.
Everything works fine, except that double ...
4
votes
1answer
319 views
Large xml file parsing failed using XML::TWIG
I am trying parse a large xml file (around 100,000 records) using XML::Twig but perl parsing fails with error:
perl.exe - Application Error:
The instruction at "0x28086920" referenced memory at ...
3
votes
1answer
467 views
XML::Twig Comment
I have an XML document which I need to convert to another type of XML. Some of the information cannot be encoded in the XML I want to convert to, so I want to store the extra information as comments. ...
3
votes
1answer
204 views
Parsing a file handle with XML::Twig
I see in the XML::Twig documentation the functions parse($text) for parsing scalars contain xml text, and parsefile($fileName) for reading in and parsing xml files. I would like to parse an input ...
1
vote
1answer
354 views
unable to install XML::Twig with Perl 5.008003
I have perl version 5.008003 on my machine. I am trying to install XML::Twig using CPAN but it is failing with following errors. Can anyone help.
t/xmlxpath_22name_select............ok
...
1
vote
2answers
486 views
Sorting & Merging XML Documents with Perl / XML::Twig
I have many XML files in a directory that need to sorted and merged into one file. The files are formatted as follows:
File1.xml:
<?xml version="1.0" encoding="utf-8"?>
<doctypea>
...
2
votes
2answers
260 views
XML::Twig xpath bar
I'm using XML::Twig to process this XML:
<?xml version="1.0" encoding="UTF-8"?>
<termEntry>
<langSet lang="en">
<ntig>
<termGrp>
...
4
votes
1answer
341 views
How to remove comments from XML using Twig module
I'm using XML::Twig module to remove all the comments from an XML file. The sample file can be -
<?xml version="1.0" encoding="UTF-8"?>
<Node_A>
node A content 1
<!-- One Line Comment ...
