T
ThunderMusic
Hi,
I want to convert UTF-16 (or unicode) to ISO-8859-1... The .Net
encoding does a pretty code job, but some characters are not converted, like
"O" that becomes "?"... I want it to become "oe"... So, what I want to know
is the method used by the .NET encoders to convert from one encoding to the
other... is it using an optimized two-stage table or a multistate table or
other method?
As I know the first 256 characters are the same, it's easy to convert those
256, but for the others, we have to make a correspondance, would an
optimized two-stage table be the best way to go? Does somebody know where I
could get such a table so I don't have to type it all myself?
thanks
ThunderMusic
I want to convert UTF-16 (or unicode) to ISO-8859-1... The .Net
encoding does a pretty code job, but some characters are not converted, like
"O" that becomes "?"... I want it to become "oe"... So, what I want to know
is the method used by the .NET encoders to convert from one encoding to the
other... is it using an optimized two-stage table or a multistate table or
other method?
As I know the first 256 characters are the same, it's easy to convert those
256, but for the others, we have to make a correspondance, would an
optimized two-stage table be the best way to go? Does somebody know where I
could get such a table so I don't have to type it all myself?
thanks
ThunderMusic