<?xml version="1.0" encoding="windows-1252"?>
<node id="285443" title="Re: Re: Re: Using Win32::OLE and Excel - Tips and Tricks" created="2003-08-21 08:17:46" updated="2005-07-07 15:01:36">
<type id="11">
note</type>
<author id="961">
Anonymous Monk</author>
<data>
<field name="doctext">
Actually, using Unicode::String as a container for your data is not needed (in fact, it will croak on acctented chars and other punctuation). Just use the string as you 'normally' do, i.e. to look at each char:&lt;p&gt;

&lt;code&gt;
    for my $uchar (split(//, $text)) {
        my $ord = ord($uchar);
        ...
    }
&lt;/code&gt;

While it seems natural to me now, it took me some time to locate that my troubles with unicode strings was *using* Unicode::String... :-)
&lt;p&gt;
---Lars
</field>
<field name="root_node">
153486</field>
<field name="parent_node">
284830</field>
<field name="reputation">
8</field>
</data>
</node>
