TextStream.AtEndOfLine

JScript2.0+Syntax

							textstream.AtEndOfLine

Description

The AtEndOfLine property of the TextStream object returns true when the end of a line in a text line is found.

Example

Listing 9.124 opens two files. The first file is for reading a string from, while the second file is written to—one character at a time—as the script iterates through. The result is that the first line of the file opened for reading is written to the second file. This file can be executed with the Windows Scripting Host (wscript.exe or cscript.exe).

Listing 9.124 Using the AtEndOfLine Property to Find the End of the First Line in a File
 // Create a FileSystemObject object var myFileSysObj = new ActiveXObject("Scripting.FileSystemObject"); // Create ...

Get Pure JavaScript now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.