in reply to Re: xml::writer and xml::LibXML
in thread xml::writer and xml::LibXML
I'll give your open routine a shot....thanks$xml_out = new IO::File(">$filename"); # 'OUTPUT' writes to this file # 'DATA_MODE' writes <CRLF> after each line # 'DATA_INDENT' indents each level four spaces $xml_writer = new XML::Writer( OUTPUT => $xml_out, DATA_MODE => 'true', DATA_INDENT => 4 );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: xml::writer and xml::LibXML
by fionbarr (Friar) on May 15, 2013 at 16:36 UTC |