Long story short, I have a very large table (1200+ rows) from a custom Excel to html conversion, which is working beautifully, except for a final missing part. I'm no good with RegEx, and I think I need it for a Find and Replace in Notepad++. Below is what I have and what I need.
Input:
<td>image1</td>
<td>image2</td>
...
<td>image1242</td>
Needed output:
<td><img src="image1.png" alt="" /></td>
<td><img src="image2.png" alt="" /></td>
...
<td><img src="image1242.png" alt="" /></td>
Please advice!