Section: Input/Ouput Functions
s = fgetline(handle)
This function reads characters from the file handle
into
a string
array s
until it encounters the end of the file
or a newline. The newline, if any, is retained in the output
string. If the file is at its end, (i.e., that feof
would
return true on this handle), fgetline
returns an empty
string.
--> fp = fopen('testtext','w'); --> fprintf(fp,'String 1 '); --> fprintf(fp,'String 2 '); --> fclose(fp); --> quit
Next, we read then back.
--> fp = fopen('testtext','r') fp = 12 --> fgetline(fp) ans = String 1 --> fgetline(fp) ans = String 2 --> fclose(fp); --> quit