逐行读取文本文件并执行功能?

时间:2019-11-20 07:11:58

标签: javascript node.js regex

我有这段代码,它检查像这样的逗号分隔的字符串

85aecb80-ac00-40e3-813c-5ad62ee93f42,1813724,client@gmail.com
13vg4f20-fc24-604f-2ccc-1af23taf4421,4255729,developer@gmail.com

,如果逗号内的值与正则表达式上指定的值相同,则返回false或true值。

当我尝试编写脚本以逐行读取.txt文件并使用此正则表达式代码检查其真假时,就会遇到我的问题。

function test(str){

  let regex = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/; // email regex

  str = str.split(","); 

  // string should be of length 3 with str[1] number of length 7
  if(str && str.length === 3 && Number(str[1]) && str[1] ){

    let temp = str[0].split("-");

    // check for 85aecb80-ac00-40e3-813c-5ad62ee93f42 separately.
    if(temp && temp.length === 5 &&  /[a-zA-Z\d]{8}/.test(temp[0]) &&  /[a-zA-Z\d]{4}/.test(temp[1]) &&  /[a-zA-Z\d]{4}/.test(temp[2]) &&  /[a-zA-Z\d]{4}/.test(temp[3]) &&  /[a-zA-Z\d]{12}/.test(temp[4])){

      // email regex
      if(regex.test(str[2])){
        return true;

      } 
      else{
        return false;
      }

    }
    else{

      return false
    }
  }
  else{

    return false;
  }
}

我现在不能尝试发布代码,因为我没有尝试,甚至不知道如何开始

3 个答案:

答案 0 :(得分:0)

var fs = require('fs');
const readline = require('readline');
const readInterface = readline.createInterface({
input: fs.createReadStream('read.txt'),
output: process.stdout,
console: false
});

readInterface.on('line', function (line) {
  console.log(line);
  test(line);
});
function test(str) {

 let regex = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/; // email regex

 str = str.split(",");

 // string should be of length 3 with str[1] number of length 7
if (str && str.length === 3 && Number(str[1]) && str[1]) {

   let temp = str[0].split("-");

   // check for 85aecb80-ac00-40e3-813c-5ad62ee93f42 separately.
if (temp && temp.length === 5 && /[a-zA-Z\d]{8}/.test(temp[0]) && /[a-zA-Z\d]{4}/.test(temp[1]) && /[a-zA-Z\d]{4}/.test(temp[2]) && /[a-zA-Z\d]{4}/.test(temp[3]) && /[a-zA-Z\d]{12}/.test(temp[4])) {

     // email regex
  if (regex.test(str[2])) {
    return true;
  }
  else {
    return false;
  }

   }
else {
    return false;
}
 }else {
    return false;
}
}

答案 1 :(得分:0)

您可以使用ReadLine模块逐行读取文件。您可以附加测试结果列表,然后在完全读取文件后对它们进行一些处理:

const readline = require('readline');
const fs = require('fs');
const inputFileName = './testfile.txt';

const readInterface = readline.createInterface({
    input: fs.createReadStream(inputFileName),
});

let testResults = [];
readInterface.on('line', line => {
    testResult = test(line);
    console.log(`Test result (line #${testResults.length+1}): `, testResult);
    testResults.push({ input: line, testResult } );
});

// You can do whatever with the test results here.
readInterface.on('close', () => {
    console.log("Test results:", testResults);
});

function test(str){

    let regex = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/; // email regex

    str = str.split(","); 

    // string should be of length 3 with str[1] number of length 7
    if(str && str.length === 3 && Number(str[1]) && str[1] ) {

        let temp = str[0].split("-");

        // check for 85aecb80-ac00-40e3-813c-5ad62ee93f42 separately.
        if(temp && temp.length === 5 &&  /[a-zA-Z\d]{8}/.test(temp[0]) &&  /[a-zA-Z\d]{4}/.test(temp[1]) &&  /[a-zA-Z\d]{4}/.test(temp[2]) &&  /[a-zA-Z\d]{4}/.test(temp[3]) &&  /[a-zA-Z\d]{12}/.test(temp[4])){

            // email regex
            if(regex.test(str[2])) {
                return true;
            } else {
                return false;
            }
        } else { 
            return false
        }
    } else {
        return false;
    }
}

答案 2 :(得分:0)

我将所有正则表达式合并为一个正则表达式:

/[a-zA-Z\d]{8}\-[a-zA-Z\d]{4}\-[a-zA-Z\d]{4}\-[a-zA-Z\d]{4}\-[a-zA-Z\d]{12},\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/gm

使用该正则表达式测试您的句子。不要分割字符串,而是将其视为一个整体