in reply to Re^3: convert encoding
in thread convert encoding
use strict; use Lyo::OSLC::CQ::CM; use Data::Dumper; use Encode qw(encode decode); ... my $client = Lyo::OSLC::CQ::CM->new; ... my $data = $client->oslcWhere(...); # get data from ClearQuest my $xml = Dumper($data); my $xml_out = encode('UTF-8', $xml); print $xml_out;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: convert encoding
by haukex (Archbishop) on Feb 23, 2017 at 10:05 UTC | |
|
Re^5: convert encoding
by Corion (Patriarch) on Feb 23, 2017 at 09:59 UTC |