Search for inline css in html file with atom using regex

In Atom or any text editor that supports regex search, you can use this to search for the inline css styles in a HTML file:

style='[^']*'

or double quote:

style="[^"]*"

Awesome!

Comments