I have an UTF-8 encoded text file and BBEdit well recognize the encoding.
Now I open this file with Rev Studio 4.0 with
Code: Select all
open file myFile for binary read
read from file myFile until EOF
put uniDecode(uniEncode(it,"UTF8")) into data
-- here some treatments on data...
put data into URL ("binfile:" & myFile)
Can anyone tell me what am I doing wrong?
Thanks.