On Sun, Dec 1, 2013 at 7:28 AM, Shaji Kalidasan wrote:
> Dear Shlomi,
>
> I tried to install https://metacpan.org/release/XML-LibXML in my windows
> setup (using Strawberry Perl 5.18.1 on Windows 7) but it failed. Please
> suggest where am I going wrong?
>
> Here is the output from console (comman
Dear Shlomi,
I tried to install https://metacpan.org/release/XML-LibXML in my windows setup
(using Strawberry Perl 5.18.1 on Windows 7) but it failed. Please suggest where
am I going wrong?
Here is the output from console (command prompt)
C:\demo>cpanm XML::LibXML
--> Working on XML::LibXML
Fe
Dear Shlomi,
I want the XML output to include double quotes instead of ".
Example:-
In the following code snippet
$test_method->setAttribute("name","\"$count.$attribute_act\" duration-ms=\"0\"
started-at=\"0\"");
I want the output (XML) to be
duration-ms="0" started-at="0"
One more issue
Hello Shaji,
On Fri, 29 Nov 2013 13:32:49 +0800 (SGT)
Shaji Kalidasan wrote:
> Dear Perlers,
>
> I am trying to print double quotes in the output (output.xml) but it is
> printing " instead of "". How can I include double quotes "" in the
> output. Please help.
>
In XML, «"» is an XML entity
Dear Perlers,
I am trying to print double quotes in the output (output.xml) but it is
printing " instead of "". How can I include double quotes "" in the
output. Please help.
Here is the code
[code]
#!/usr/bin/perl
use strict;
use warnings;
use XML::DOM;
my $parser = XML::DOM::Parser->new()