perl-unicode

Re: Utf8 encoding

2007-10-26 03:21:46
Vajramatti Shashidhar (DS/EES1) skribis 2007-10-26 12:02 (+0200):
      my $parser = "";
      my $doc = "";
      $parser = XML::LibXML->new();#  
      $doc = $parser->parse_file( $x_file );

You should combine these for nicer code:

    my $parser = XML::LibXML->new();
    my $doc = $parser->parse_file( $x_file );

What are the contents of the file? (What is its encoding?)

The first line should contain the encoding:

    <?xml version="1.0" encoding="iso-8859-1"?>
-- 
Met vriendelijke groet,  Kind regards,  Korajn salutojn,

  Juerd Waalboer:  Perl hacker  <#####(_at_)juerd(_dot_)nl>  
<http://juerd.nl/sig>
  Convolution:     ICT solutions and consultancy 
<sales(_at_)convolution(_dot_)nl>

<Prev in Thread] Current Thread [Next in Thread>