You are right, I could search for the given content.
The background is (what I have forgotten to describe) that I'm working in a big documentation (ca. 2500 HTML-files, roughly 30 MB). This documentation of an interface is delivered on a regular basis to "consumers" (to be exact: depending on planned or introduced, resulting in two versions: "production" and "development" (i. e. description on coming changes). In average there is every month one delivery - this will be overruled by the volume of each change which has to be documented in the delivery, respectively).
Changes to previous versions are highlighted with HTML methods, using the same color (like #00FFFF) for same releases. The documentation could contain more than one change in one delivery (i. e. more than one color of highlighting). 00FFFF stands here only as one example - different releases having different colors.
My question is triggered by the attempt to automate the process of editing: An usual task is to strip all highlighting for a certain change (because it went productive). So I'm looking for every point where 00FFFF is used (that is my usual approach: find all points where the 00FFFF is used).
style="background-color:#00FFFF;color:red"
is only one example of possible highlighting. Ohers are
style="background-color:#00FFFF;color:blue"
style="background-color:#00FFFF"
<table class="banner"><tr><td align="center "style="background-color:#00FFFF">With color aquamarin marked changes planned for release xyz</td></tr></table>
and some more. Given of the exact structure found by the search I'll treat it in a proper way: Just deleting a paragraph, marking some code and delete ist, modifying code or so on. Or make a special treatment in cases where some representation of different future releases are mixed (i. e. in (database-) tables which are part of the documentation and where different cells are modified in different releases, or rows inserted in different releases or mixtures of inserting rows and modifying cells).
With my question I'm trying to have one macro or combination of key hits to mark and to delete the
<td class="kat" style="background-color:#00FFFF;color:red">..</td>
or
background-color:#00FFFF;color:red
or
style="background-color:#00FFFF;color:red"
I know that I could use also CSS to switch off highlighting just changing one line in fonts.css. But actually I don't have the time to change my process of editing and the structure of my document, because to use CSS I have to prepare some things in the existing documentation.