Pop quiz: characters or bytes?
- Reading XML
use XML::LibXML; use open ':encoding(utf8)'; # could mess up XML file # $xml_string MUST be a byte string! $dom = XML::LibXML->load_xml(string => $xml_string);
use XML::LibXML; use open ':encoding(utf8)'; # could mess up XML file # $xml_string MUST be a byte string! $dom = XML::LibXML->load_xml(string => $xml_string);