“Comment obtenir une ligne particulière à partir d'un fichier dans Nodejs” Réponses codées

Comment obtenir une ligne particulière à partir d'un fichier dans Nodejs

lineReader.eachLine('path/to/file', function(line) {
    console.log(line);
    if (line.includes('STOP') {
        return false; // stop reading
    }
});
Outstanding Oystercatcher

Comment obtenir une ligne particulière à partir d'un fichier dans Nodejs

$ npm install --save line-reader
Outstanding Oystercatcher

Comment obtenir une ligne particulière à partir d'un fichier dans Nodejs

lineReader.open('/path/to/file', function(reader) {
    if (reader.hasNextLine()) {
        reader.nextLine(function(line) {
            console.log(line);
        });
    }
});
Outstanding Oystercatcher

Réponses similaires à “Comment obtenir une ligne particulière à partir d'un fichier dans Nodejs”

Questions similaires à “Comment obtenir une ligne particulière à partir d'un fichier dans Nodejs”

Plus de réponses similaires à “Comment obtenir une ligne particulière à partir d'un fichier dans Nodejs” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code