gpt4 book ai didi

node.js - 如何使用 Node js 更改文件中的特定行?

转载 作者:行者123 更新时间:2023-12-03 12:12:47 25 4
gpt4 key购买 nike

我想使用带有 fs 模块的 Node js 更改文本文件中的特定行。

有没有更优雅的方式将文件加载到数组中?

旧文件:

Line 1
Line 2
Line 3

新文件:
Line 1
something new
Line 3

感谢您的回复!

最佳答案

尝试使用这个:

var fs = require('fs')
fs.readFile("your file", {encoding: 'utf8'}, function (err,data) {
var formatted = data.replace(/This is the old line/g, 'This new line replaces the old line');
fs.writeFile("your file", formatted, 'utf8', function (err) {
if (err) return console.log(err);
});
});
如果这不起作用,请访问 https://www.npmjs.com/package/replace-in-file .

关于node.js - 如何使用 Node js 更改文件中的特定行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30711184/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com