get lines as list from file node js
const fs = require('fs'); fs.readFile('file.txt', function(err, data) { if(err) throw err; const arr = data.toString().replace(/\r\n/g,'\n').split('\n'); for(let i of arr) { console.log(i); } });
get lines as list from file node js
const fs = require('fs'); fs.readFile('file.txt', function(err, data) { if(err) throw err; const arr = data.toString().replace(/\r\n/g,'\n').split('\n'); for(let i of arr) { console.log(i); } });
javascript read file lines into array vanilla
const fileList = event.target.files; let fileContent = ""; const fr = new FileReader(); fr.onload = () => { fileContent = fr.result; console.log('Commands', fileContent); } fr.readAsText(fileList[0]);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us