写入文本文件 NodeJS 的特定部分
Write to particular part of text file NodeJS
我有一个这样的文本文件:
lorem ipsum
some text
even more lorem ipsum
我如何 select 文件的“一些文本”位并写入它,例如。 “更多 lorem ipsum”。
注意:“一些文本”部分不会有常量值。
提前致谢!
使用行替换 npm 模块:
const lineReplace = require('line-replace')
lineReplace({
file: 'yourtextfilename.txt',
line: 3, // line number starts from 1
text: 'more lorem ipsum',
addNewLine: true,
callback: ({ file, line, text, replacedText, error }) => {}
})
PS: 这个问题之前已经回答过多次了,发帖前请自己研究一下。
我有一个这样的文本文件:
lorem ipsum
some text
even more lorem ipsum
我如何 select 文件的“一些文本”位并写入它,例如。 “更多 lorem ipsum”。
注意:“一些文本”部分不会有常量值。
提前致谢!
使用行替换 npm 模块:
const lineReplace = require('line-replace')
lineReplace({
file: 'yourtextfilename.txt',
line: 3, // line number starts from 1
text: 'more lorem ipsum',
addNewLine: true,
callback: ({ file, line, text, replacedText, error }) => {}
})
PS: 这个问题之前已经回答过多次了,发帖前请自己研究一下。