Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.3k views
in Technique[技术] by (71.8m points)

regex - How to search and Replace multiline string inside big multiline string in javascript

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...