Anyone has a regex that can remove the attributes from a body tag
for example:
<body bgcolor="White" style="font-family:sans-serif;font-size:10pt;">
to return:
<body>
It would also be interesting to see an example of removing just a specific attribute, like:
<body bgcolor="White" style="font-family:sans-serif;font-size:10pt;">
to return:
<body bgcolor="White">