in reply to Re: Help with HTML::StripScripts::Parser
in thread Help with HTML::StripScripts::Parser

"You can't have bare attributes."

I don't think the OP wanted to have bare attributes replacing the <h3> tag. I think the OP was concerned about the class attributes disappearing from the other elements, such as <ol>. That was my reading of the question anyway.

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Replies are listed 'Best First'.
Re^3: Help with HTML::StripScripts::Parser
by danny0085 (Sexton) on Aug 07, 2012 at 20:45 UTC
    I found a solution maybe not the best but works
    $HTML =~ s/<h2[^)]*h2>//g;
    No more H2 tags and class attributes OK