how do i scan custom attributes from html tags?
here is example code.
undecided custom attribute name.
<table>
<tr>
<td mycustom-attr1="true"></td>
<td mycustom-attr2="true"></td>
<td mycustom-attr3="false"></td>
</tr>
</table>
<table>
<tr>
<td mycustom-attr1="true"></td>
<td mycustom-attr2="true"></td>
<td mycustom-attr3="false"></td>
</tr>
</table>
i want extract to "mycustom-attr1, mycustom-attr2, mycustom-attr3" from this html tag
search for 1000+ jsp pages.
any idia?
