03-05-2013 12:30 AM
Hello,
I've got a problem to store datas from the source code of a web site when there is some accent. In example on french wikipedia, the "é" is replaced by é.
I think that it is a problem between UTF8 and Unicode but I don't know how to fix it.
Any idea ?
03-05-2013 12:32 AM
I forgot the screeenshot :
03-05-2013 01:59 AM - edited 03-05-2013 01:59 AM
Hi atouloupis,
UTF8 encoding is using two bytes to encode "strange" characters (like French e accent). LabVIEW is ASCII based and does not convert UTF8 on it's own.
But: you can always write your own VI to convert UTF8 to corresponding ASCII chars (if available). "Search and Replace String" will be the function of your choice...