Convert unicode string to ansi

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?
 
H

Herfried K. Wagner [MVP]

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)
///
 
G

Guest

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!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top