“JS Leia o arquivo de texto linha por linha” Respostas de código

JS Leia o arquivo de texto linha por linha

document.getElementById('file').onchange = function(){

  var file = this.files[0];

  var reader = new FileReader();
  reader.onload = function(progressEvent){
    // Entire file
    console.log(this.result);

    // By lines
    var lines = this.result.split('\n');
    for(var line = 0; line < lines.length; line++){
      console.log(lines[line]);
    }
  };
  reader.readAsText(file);
};
Vast Vendace

JS Leia o arquivo de texto linha por linha

handleFiles(input) {

    const file = input.target.files[0];
    const reader = new FileReader();

    reader.onload = (event) => {
        const file = event.target.result;
        const allLines = file.split(/\r\n|\n/);
        // Reading line by line
        allLines.forEach((line) => {
            console.log(line);
        });
    };

    reader.onerror = (event) => {
        alert(event.target.error.name);
    };

    reader.readAsText(file);
}
Vast Vendace

Respostas semelhantes a “JS Leia o arquivo de texto linha por linha”

Perguntas semelhantes a “JS Leia o arquivo de texto linha por linha”

Procure respostas de código populares por idioma

Procurar outros idiomas de código