Re: [xml-dev] XML parsing the only way?

From
Robin Berjon <>
To
Date
2004-02-03T10:50:34Z
ID
<>
Thread
Re: [xml-dev] XML parsing the only way?
Emmanuil Batsis (Manos) wrote:
> I have a bunch of charefs like &#967; and I want to convert those in the 
> approrpiate java string. What is the quickest way of doing this? A new 
> DOMDoc perhaps?

You could grab the number into num and then use

  char c = Character.forDigit( num, 10 );

or so I think.

-- 
Robin Berjon