How to remove all classes from entire html string (a lot of elements) when class match some pattern (let's say begins with something-
)
So
input
<div class="something-first">
<div class="something-child something-good another something-great">
</div>
</div>
would become
<div class="">
<div class="another">
</div>
</div>
I need to do it server-side so it needs php.