第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

我在 NodeJS 中遇到有關文件處理的問題

我在 NodeJS 中遇到有關文件處理的問題

一只斗牛犬 2023-09-14 22:00:34
我無法解決 NodeJS 中的以下文件處理問題:我有一個文件 emp.txt,其中包含固定記錄大小的員工數(shù)據(jù),格式如下:    EmpID:Name:Dept:Salary    1001:Harry:Sales:23000    1002:Sarita:Accounts:20000    1003:Monika:TechSupport:35000    Read the file. Display sum of salary of all employees我嘗試使用以下代碼成功讀取文件,但沒有獲得解決確切問題的邏輯。我的讀取文件的代碼:    var fs = require("fs");    console.log("Going to read file!");    fs.readFile('emp.txt', function(err, data){        if(err){            return console.error(err);        }        console.log(data.toString().split(":"));        console.log("read Successfully");    })Salary讀取字段emp.txt并計算其總和的正確邏輯是什么?
查看完整描述

2 回答

?
小怪獸愛吃肉

TA貢獻1852條經(jīng)驗 獲得超1個贊

首先,您必須拆分\n文本文件中的新行 ( )。然后循環(huán)每一行并得到總數(shù):


var fs = require("fs");

console.log("Going to read file!");


let totalSalary = 0;

fs.readFile('emp.txt', function(err, data){

    if(err){

        return console.error(err);

    }

    const dataRows = data.toString().split("\n");

    for (let index=0;  index < dataRows.length; index++){

      if (index > 0){

        let empData = dataRows[index].split(":");

        totalSalary += parseInt(empData[3]);

      }

    }


    console.log(totalSalary);


    console.log("read Successfully");

})

Repl.it 鏈接: https: //repl.it/@h4shonline/ImpressionableRadiantLogic


查看完整回答
反對 回復 2023-09-14
?
汪汪一只貓

TA貢獻1898條經(jīng)驗 獲得超8個贊

你為什么不:

像這樣的東西:

const fs = require('fs');

const readline = require('readline');


async function processLineByLine() {

    const fileStream = fs.createReadStream('emp.txt');

  

    const rl = readline.createInterface({

      input: fileStream,

      crlfDelay: Infinity

    });

    // Note: we use the crlfDelay option to recognize all instances of CR LF

    // ('\r\n') in input.txt as a single line break.

    let sum = 0;

    for await (let line of rl) {

      // Each line in input.txt will be successively available here as `line`.

      line = line.replace(/ /g,'').split(':');

      const salary = Number(line.pop());

      if (!isNaN(salary)) {

        sum += salary;

      }

    }

    console.log(`Sum: ${sum}`)

  }


  processLineByLine();


查看完整回答
反對 回復 2023-09-14
  • 2 回答
  • 0 關注
  • 152 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號