Is there a quick way to getting rid of class="..." strings?

Doc Number
(eForm Public Comment Link)
Public Comment
End Date
Received
Posted
Location Name
(Documents Link)
Location Size
Status
Status Date
Type of Permit
Qtr Qtr
Section
Township
Range
County
Footage Call
(Map Link)
Operator
Operator Num
Operator Contact
Contact Number

You'd want a script like

You'd want a script like this, and I would run it on the first extractor "before pattern is applied".

import org.apache.commons.lang3.StringUtils;

String s = scrapeableFile.getContentAsString();
s = StringUtils.replacePattern(s, "<p[^>]*>", "<p>");

scrapeableFile.setLastScrapedData(s);

You could tweak the replace to get better what you want.