所以基本上我想从txt文件删除字符串。
使用fs
输入示例:
string1
string2
string3
string4
删除string3
删除后就像是:
string1
string2
string4
答案 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
存在时,你为什么要把它变得复杂?