Hello,
I have a general question about Regular Expressions.
I am using Notepad++ and I want to replace a line for another in 100+ opened documents.
This is what I have:
<p class="block3"><img alt="Image" class="calibre6" src="../Images/image-11.jpeg" />
I want to replace it to something like this:
<img alt="Image" class="calibre6" src="../Images/image-11.jpeg" />
Q: how do I keep the img tag as is and remove the p tags in all opened documents (notice that the img class changes in each document)?
P.S: I used (<p class="block)[0-9]*(">) to capture the opening p tags
Thanks,
I have a general question about Regular Expressions.
I am using Notepad++ and I want to replace a line for another in 100+ opened documents.
This is what I have:
<p class="block3"><img alt="Image" class="calibre6" src="../Images/image-11.jpeg" />
I want to replace it to something like this:
<img alt="Image" class="calibre6" src="../Images/image-11.jpeg" />
Q: how do I keep the img tag as is and remove the p tags in all opened documents (notice that the img class changes in each document)?
P.S: I used (<p class="block)[0-9]*(">) to capture the opening p tags
Thanks,