I have to remove a lot of font-family:
declarations from my website, they are hundreds and I have replaced most of them with the same line, only commented (ex: /* font-family: "Segoe UI","Helvetica","Arial"; */
).
Now, if I could only search for the un-commented ones to find the few that are left. My first atempt clearly demonstrates I do not fully understand regular expressions:
^(?!(?:/*)).*\s*."font-family:"."*"
The syntax is Boost (but only a subpart of it, as the replacement is PCRE-style).