I am trying to add a string after the first occurrence of an <img>
tag.
Let say that I have the following html markup:
<p>text here text here text here text here text here
<img class="img-class" src="image1.jpg" srcset="" alt="" />
text here text here text here text here text here text here text here
text here text here <img class="img-class" src="image2.jpg" srcset="" alt="" />
text here text here text here text here
Using a Regular Expression - How can add text after the first <img>
tag?