Is there any way to check if the string is UNICODE using VB.net.
Best Regards inchikka
|
Is there any way to check if the string is UNICODE using VB.net. Best Regards inchikka
| |||||||||||||
feedback
|
|
You need to read the file using the 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).
| |||||||
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? | |||
|
feedback
|