|
|
|
|
|
METHOD: |
|
|
|
skipLine |
|
|
|
|
|
|
|
DESCRIPTION: |
|
|
|
Skips a line when reading a text stream. |
||
|
|
|
|
|
PROPERTY OF: |
|
|
|
|
||
|
|
||
|
SYNTAX: |
|
|
|
<oRef>.skipLine() |
|
|
|
<oRef> |
|
|
|
The stream object. |
|
|
|
|
||
|
DESCRIPTION: |
|
|
|
The SkipLine method is used with text streams. |
||
|
|
||
|
All characters up to and including the next line separator are skipped. |
||
|
By default, the lineSeparator is CRLF. If you attempt to skip past EOS, the current position will remain at EOS. |
||
|
|
||
|
The skipLine() method is used to skip over all characters up to and including the next line separator in a text data stream object. |
||
|
If there is no line separator between the current position and EOS, the new current position simply becomes the EOS. |
||
|
By default, this method searches for an CRLF line separator which is a carriage return/line feed. |
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
|
|