So we have 1500 xhtml pages in lets say 100 subfolders of /myfolder. I want to find evil constellations of
<goodTag>
....
<evilTag/>
....
<evilTag/>
....
</goodTag>
In my current case, it is only allowed to have
<goodTag>
....
<evilTag/>
...
</goodTag>
and not 2 evil Tags within a good Tag. This is just an example though. Sometimes I must search for something like
<outter>
....
<someTag someAttribute="iDoEvil" />
...
</outter>
I've been browsing for a while now and could not find a tool which would help me to do so. What free ware / open source solutions are availble in windows?
What are the xhtml files like? basically they are web pages created for JSF. We use our own tags and keep doing changes to them and thus, have to keep a good eye on bad constellation who haven't been thought of
I'm basically asking because I finally ended up doing it with regex, which makes people around here going nuts.