I want to replace all the occurrences of [h2][/h2] in a JavaScript string
For example, I have
var mystring = 'hii[h2][/h2]';
I want to get -> hii
so far I tried
mystring.replace(/[h2][\/h2]/g, "");
|
I want to replace all the occurrences of
I want to get -> hii so far I tried
|
||||
|
You need to escape the square braces.
|
|||||||||||
|
|
Assuming nothing between those tags, you need to escape the
|
|||||||||
|
|
try this one:
note that you have to escape [ and ] if they form part of the text you want to replace otherwise they are interpreted as "character class" markers. If the [h2] and [/h2] could also appear separate, you could use this one:
|
||||
|
|
[is a special character, you'd need to escape it too. – pimvdb May 20 '11 at 15:55