Hi
I need to convert UTF8 string to ISO-8859-1 string using VB.NET.
Any example?
Thanks in advance.
|
1
|
Hi I need to convert UTF8 string to ISO-8859-1 string using VB.NET. Any example? Thanks in advance. |
||
|
|
|
|
Hi finally I've found 90% of solution:
Runs fine, except with the character + It is ignored Example:
But Encoded string is:
How I can solve it? |
|||
|
|
|
|
emphasized textI have tried Latin function and not runs. I receive incorrect string. My case is that I need to send SMS using API. Now I have this code:
But not runs...I receive incorrect messages. For example if I write: mañana returns maa ana If I write aigüa returns aiga |
||
|
|
|
|
http://msdn.microsoft.com/en-us/library/system.text.encoding.convert.aspx Try this with the variable "input" as the UTF-8 String; VB.NET:
C#:
|
|||
|
|
|
The encoding ISO-8859-1 is more commonly called Latin-1. You can get this encoding by doing the following
The full conversion can be done by the following
EDIT As Jon pointed out, it may be easier for people to remember the decimal number 28591 rather than the hex number &H6FAF. |
|||
|
|
How about:
That assumes that when you say "UTF8 string" you mean "binary data which is the UTF-8 representation of some text". If you mean something else, please specify :) Note that ISO-8859-1 only represents a tiny proportion of full Unicode. IIRC, you'll end up with "?" for any character from the source data which isn't available in ISO-8859-1. |
||
|
|