in reply to Re^7: Not able to replace element value using XML::Twig
in thread Not able to replace element value using XML::Twig
I was able to locate Twig.pm and it does have the print_to_file function.
sub print_to_file { my( $t, $filename)= (shift, shift); open( TWIG_PRINT_TO_FILE, ">$filename") or croak "cannot create fi +le $filename: $!"; $t->print( \*TWIG_PRINT_TO_FILE, @_); close TWIG_PRINT_TO_FILE; return $t; }
Twig_pm.slow,v 1.303 2006/05/26 08:07:14
This is the Twig version in my system but the code is available in the library
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: Not able to replace element value using XML::Twig
by jethro (Monsignor) on Feb 01, 2010 at 01:14 UTC |