I want to remove inline style from an html document in ST2.
I imagine my regex will be something like this style=\\\"*\\\"
If that\'s wrong, it doesn\'t
Simply open the Search+Replace function (via Ctrl-H or the menu bar) and check the first box on the left of it (the one with an '*' on it, or you can press Alt+R)
Then the search field will be used as a Regex, and you can use the found patterns using the usual $1, $2, $3 vars in the replace box
More info here
I had a similar task to perform, the regex I used in the manner that Nas62 suggested was
style=\"(.*?)\"
Find What : style=".*"
Replace With : leave it as blank
Click Replace All button.