I create a Report List with Winrar.
Inside this list i have a text list like this
<tag>Adventures of Shuggy</tag>
!Shuggy.png
!Sound Bank.txt
4.lwav
5.lwav
6.lwav
88.lwav
89.lwav
<tag>Adventures of Jack</tag>
90.lwav
91.lwav
92.lwav
93.lwav
!Sound Bank.xsb
I want remove duplicates extensions inside every tag and have a text like this:
<tag>Adventures of Shuggy</tag>
!Shuggy.png
!Sound Bank.txt
4.lwav
<tag>Adventures of Jack</tag>
90.lwav
!Sound Bank.xsb
or even better
<tag>Adventures of Shuggy</tag>
.png
.txt
.lwav
<tag>Adventures of Jack</tag>
.xsb
Is there a regular expression to use on notepad++ to remove lines with identical .txt or identical .lwav inside every tag like <title>
?
Can i use excel for this?