Thanks
It's working
I learned though, that each word has to have a comma after, even though it's on a different line.

Now I'm trying to find out how to delete/remove a line.
There is no code called 'str_remove', so that means I would have to remove it with a blank string... I think.

This is what I came up with, but it doesn't work, and something tells me it is wrong.

Code:
myFile = file_open_append(fileString);
	
var i;
for (i=0; i<lineToRead; i++)
{
	file_str_read(myFile,WordText);
	str_cpy((Word.pstring)[0], WordText);
	file_str_write(myFile,str_cpy(WordText,""));
}
file_close(myFile);



This doesn't work either: file_str_write(myFile,"");
Could you also help me with this one? Appreciate it. Thanks