var a = "[i] earned [c] coin for [b] bonus";
How to get string "__ earned __ coin for __ bonus" from the variable above in JavaScript?
All I want to do is to replace all the bracket [] and its content to __.
[]
__
a = a.replace(/[.*?]/g, '__');
if you expect newlines to be possible, you can use:
a = a.replace(/[[^]]*?]/g, '__');
1.4m articles
1.4m replys
5 comments
57.0k users