Hi I want to call the xml file and I want to change the tag name. here sample coding of get txt file.
my $inputtxt=$ARGV[0];
open(TXT,"$inputtxt"); my $txtstr=join("",<TXT>); close TXT;
$txtstr =~ s#\n\n#\n#sgi;
print $txtstr;
open (OUT,">$inputtxt.txt"); print OUT $txtstr; close (OUT);
I need how to call xml file, in the above script. Please help me.