file_text_write_string(fileid,str)

fileid = the id of the file returned by file_text_open_write or file_text_open_append

str = the string to write to the file(this can be a variable or a string)

 

This writes a string to the file after you opened it. You can write a variable to the file or a string.

 

Example

file_text_write_string(file1,'Hello world!!');

 

Ari - Revision #'1