Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Reverted by ConfluenceCloudBulkEditor.py

...

string

Scroll pagebreak

Examples

...

languagetext
string $line;

...


int $fileID;

...


// Open a sample text file

...


$fileID = `fileOpen "c:/samplefile.txt" "r"`;

...


// Keep reading in lines from the file

...


while( `isEndOfFile $fileID` == false )

...


{

...


$line = `readLine $fileID`;

...


// Do something with line

...

print $line;

...


}

Additional information

Related commands

...