Answers for "search string in file node"

0

search string in file node

fs.readFile(FILE_LOCATION, function (err, data) {
  if (err) throw err;
  if(data.includes('search string')){
   console.log(data)
  }
});
Posted by: Guest on April-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language