Hi
I am using Extract Pattern now. Can I use like this?
I need to replace something but I don't know how to use with replace() function which is mentioned in https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
I can get some text by
But I don't need those text and I want to delete them.
How should I do??
Many Thanks!!
I am using Extract Pattern now. Can I use like this?
Code:
replace(/\[.*?\]/g, "");
I can get some text by
Code:
\[.*?\]
How should I do??
Many Thanks!!