Line Input# Statement

Reads a line from a sequential file into a variable.

Sintaxis:

Line Input Statement diagram


Line Input #fileNum, variable

Parámetros:

fileNum: Number of the file that contains the data that you want to read. The file must have been opened in advance with the Open statement using the key word INPUT.

variable: The name of the variable that stores the result.

Con la instrucción Line Input#, puede leer cadenas desde un archivo abierto en una variable. Las variables de cadena se leen línea a línea hasta el primer retorno de carro (Asc=13) o avance de línea (Asc=10). Las marcas de final de línea no se incluyen en la cadena resultante.

Ejemplo:

¡Necesitamos su ayuda!