How to remove all inline styled `style=properties+val` from every tag from a long source code?
- by jitendra
How to remove all inline styled style=properties+val from every tag from a long source code quickly.
For example.
<p style="boder:2px red solid>some text</p>
<span style="background:red">some text</span>
to
<p>some text</p>
<span>some text</span>