FileInterface.GetLine Method

Top 

Description

Returns any number of characters which are extracted from the file stream until a specified delimiter, line feed (\n), or EOF is encountered. Use the Put method to preserve line feeds because they are ignored by GetLine. The user can specify whether to use the line feed or a custom delimiter to mark the end of a line.

 

Timing Precision Mode

This page describes functionality in millisecond timing precision mode.

Click here to see the documentation for this object in nanosecond timing precision mode.

 

Overload List

Signatures

Return Value

Description

FileInterface.GetLine()

String

Extracts all the characters from the stream up to the next line feed (\n).

FileInterface.GetLine(String delimiterString)

String

Extracts all the characters from the stream up to the next delimiter (specified by delimiterString).

 

 

See also

FileInterface Object

Interfacing with Files Guide

Parsing Arbitrary String Data