Is there any way to check if the string is UNICODE using VB.net.

Best Regards inchikka

link|improve this question

50% accept rate
What string? Where are you getting it from? – Oded Jun 12 '11 at 18:53
1  
In .Net, System.String is always unicode. Are you trying to find out the encoding of a file or byte[]? – agent-j Jun 12 '11 at 18:55
like this è, é, ñ, ò, ó because when read write in VB.net it appear ¿½ – user709787 Jun 12 '11 at 18:56
Reading from where? How are you reading the string? – Oded Jun 12 '11 at 18:57
reading using this Dim objSR As StreamReader Dim objSW As StreamWriter the text that I'm reading with è, é, ñ, ò, ó after writing it appear ¿½ – user709787 Jun 12 '11 at 19:00
feedback

2 Answers

You need to read the file using the Encoding that the file is written in.

It appears to be a non Unicode file that you are trying to read as Unicode, or possibly a different Unicode encoding than the default UTF-8 (could be UTF-16 for example).

StreamWriter has several constructors that the an Encoding as parameter.

link|improve this answer
can you give a sample? – user709787 Jun 12 '11 at 19:22
@user709787 - a sample of what? MSDN has samples on the different links I have posted. – Oded Jun 12 '11 at 19:24
I found the link Thanks for your help. – user709787 Jun 12 '11 at 19:32
feedback

You can do it by validating each character in the string against the 128 characters in the ASCII table. If the character is not found there then it might be a unicode character.

Is that what you mean?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.