I realise this must be a really easy piece of regex, but just can't seem to work it out. I just need to search a string for this:
</p><p>
And add a comma between them, like this:
</p>,<p>
Ignore the fact it isn't nice html, it makes sense to me though!
I tried this, but didn't seem to work:
str.replace(/<\/p><p>/g, "</p>,<p>");
Any ideas? Thanks :)
"</p><p>".replace(/<\/p><p>/g, "</p>,<p>"); // => "</p>,<p>"works just fine in chrome 12. Which Javascript platform are you using ? – krichard Jul 6 '11 at 10:59