Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

i am using fs module to write and read file

I have a big js file with code that I have converted to a string. I want to edit the contents of this file and replace the following lines of code:

};
export default unidentifiedClassName;
const unidentifiedClassName = {   

I am using js replace to edit string. Is there any way I can edit this multiline code since I cannot replace it?

let unnecessaryCode = `};
export default unidentifiedClassName;
const unidentifiedClassName = {`; 

modifiedCode = modifiedCode.replace(new RegExp(unnecessaryCode, 'gm'), '#');

console.log(modifiedCode);

It should also ignore extra newlines and spaces before or after each line


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...