Regular expression to insert content between 2nd and 3rd paragraphs
Posted
by user209634
on Stack Overflow
See other posts from Stack Overflow
or by user209634
Published on 2010-04-28T16:48:28Z
Indexed on
2010/04/28
16:53 UTC
Read the original article
Hit count: 199
regex
I'm trying to match the point between 2nd and 3rd paragraphs to insert some content. Paragraphs are delimited either by <p>
or 2 newlines, mixed. Here's an example:
text text text text
text text text text
<p>
text text text text
text text text text
</p>
<--------------------------- want to insert text here
<p>
text text text text
text text text text
</p>
© Stack Overflow or respective owner