In Notepad++, is it possible to find a particular tag in the file and increase the value by 1 for each successive tags, once the value in the first tag is entered? For example:
<p id="pg-1">1</p>
<p id="pg-"></p>
<p id="pg-"></p>
should look as:
<p id="pg-1">1</p>
<p id="pg-2">2</p>
<p id="pg-2">3</p>