从txt文件中删除字符串

时间:2018-05-08 15:41:52

标签: javascript node.js fs

所以基本上我想从txt文件删除字符串。

使用fs

输入示例:

string1
string2
string3
string4

删除string3

删除后就像是:

string1
string2
string4

2 个答案:

答案 0 :(得分:0)

阅读文本文件获取变量中的内容,然后使用String.replace

例如

var stringContent="Here goes the content of the textFile after read"
 var res=stringContent.replace('string3','');
//write back res to the file or do what ever

答案 1 :(得分:0)

brk 回答时,字符串上的replace方法将完成此任务。

另一种方式是 var a = new Array(); a = string.split("searching_string"); string = a.join(""); 认为它应该工作。但是,当replace存在时,你为什么要把它变得复杂?