- or download this
use XML::SMART;
use Encode;
...
$XML->{'MSR-ISSUE'}{'SHORT-NAME'}->content(0,$decoded_string);
my $xmlfile = "C:\\Temp\\TestFile.xml";
$XML->save($xmlfile, nometagen => 1, forceutf8 => 1);
- or download this
#...xml handling...
...
my $encoded_string = encode("cp1250", $sendername);
print $encoded_string;
- or download this
#...xml initi...
my $sendername = $XMLRead->{'MSR-ISSUE'}{'SHORT-NAME'};
$sendername = $sendername . " Test";
my $encoded_string = encode("cp1250", $sendername);
print $encoded_string;