Read file and assign each row in a different variable

Asked

Viewed 777 times

2

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 to each line, assign to a different variable.

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

});

Browser other questions tagged

You are not signed in. Login or sign up in order to post.