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.
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.
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
});