Sure, the \w represents a character that is one of A-Za-z0-9_ the [] creates a character class out of that and space then the + makes it repeat one or more times. In short this makes it look for something that looks like this
style="one or more of the following characters: A-Z a-z 0-9 _"
This is a good site for it
Regular-Expressions.info - Regex Tutorial, Examples and Reference - Regexp Patterns