Hello, I hope someone can help me.
I want to paste an text from a textfile(unicode)!! (Important, because special letters are needed) to a string.
It's not working and I don't know much about this.
Please can anyone help me in this? Thank you

Demo to show you:
Example

On the link click the smaller downloadbutton under
Datum:07.02.2013
Dateigröße:0 MB
Downloads:

And here the code seperate:

STRING* str1 = "";
STRING* str2 = "";

function main()
{
var file;

file = file_open_read("file.txt");

file_str_readtow(file,str1," ",200);
file_str_readtow(file,str2," ",200);

file_close(file);

printf(_chr(str1));
printf(_chr(str2));
}

Last edited by Benni003; 02/07/13 12:28.