I have a table with a rather large number of items, all of which have I want to add images to. Take a look at the code I am working with.
<tr><td><img src=".jpg" width=100 height=100/></td></tr>
Now I know that I could manually input the name of each image but I am learning Regular expressions using Notepadd++ version 5.9.8, and I normally use the Find/Replace feature to update identical segments of code. My approach towards a simplified solution I thought I could number images from 1 all the way to the last image, and use Regular Expressions to insert 1,2,3... using Find and replace for the above code snippet.
I ofcourse would want the result to be added before the .jpg, and it should start at 1 for the first item, 2 for the second, and all the way until the last table item.