Convert unicode string to ansi

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to convert a unicode string to an ansi string. This should not be
difficult but I simply cannot find a way to do this. Anyone?
 
Clay said:
I need to convert a unicode string to an ansi string. This should not be
difficult but I simply cannot find a way to do this. Anyone?

For Windows ANSI:

\\\
Dim b() As Byte = System.Text.Encoding.Default.GetBytes(MyString)
///
 
Thanl you!!! Now I'm not sure what the client needs though, so I gave them
every file format including, uicode, ansi, utf7, utf8, but thank you!
 
Back
Top