使用 JavaScript 替换 txt 文件中的一行

Replace a line in txt file using JavaScript

我正在尝试使用 JavaScript.

简单地替换文本文件中的一行

想法是:

var oldLine = 'This is the old line';
var newLine = 'This new line replaces the old line';

现在我想指定一个文件,找到oldLine并替换为newLine并保存。

有人可以帮我吗?

应该这样做

var fs = require('fs')
fs.readFile(someFile, 'utf8', function (err,data) {

  var formatted = data.replace(/This is the old line/g, 'This new line replaces the old line');

 fs.writeFile(someFile, formatted, 'utf8', function (err) {
    if (err) return console.log(err);
 });
});

基于 Shyam Tayal 的回答,如果您想替换与您的字符串匹配的整行,而不仅仅是完全匹配的字符串,请改为执行以下操作:

fs.readFile(someFile, 'utf8', function(err, data) {
  let searchString = 'to replace';
  let re = new RegExp('^.*' + searchString + '.*$', 'gm');
  let formatted = data.replace(re, 'a completely different line!');

  fs.writeFile(someFile, formatted, 'utf8', function(err) {
    if (err) return console.log(err);
  });
});

'm' 标志会将 ^ 和 $ 元字符视为每行的开头和结尾,而不是整个字符串的开头或结尾。

所以上面的代码将转换这个 txt 文件:

one line
a line to replace by something
third line

进入这个:

one line
a completely different line!
third line