Read file and assign each row to a different variable

1

I have the following file:

mensagem 1
mensagem 2
mensagem 3
mensagem 4

I would like to read this file using the JavaScript language, and on each line, assign to a different variable.

    
asked by anonymous 04.05.2016 / 16:19

1 answer

2

You can use .split('\n') to create an array where each line is separated.

An example would be:

fs.readFile('meuFicheiro.txt', 'utf8', (err, texto) => {
    var linhas = texto.split('\n');
    // agora podes usar dentro desta callback "linha", 
    // como uma array onde cada entrada é uma linha nova

});
    
06.05.2016 / 16:41