Do a search for only blank table cells
My day job has me auditing the data entry of other people in batches of html documents. One of the things we need to search for is empty cells in tables (and often nested tables). Given we need to crank through 150+ per week, visually hunting down all the possible empty cells can be a bit of a repetitive chore. I would love to use the "find/replace" tool to just search all the documents in a batch so I can just work my way down the list. Even better would be to search for all <td> tags that have a non-breaking space character ( ) and assign an attribute that gives is a starkly obvious highlight color so I don't have to keep the search results open.
Here's the problem: Doing a search for a specific tag containing doesn't find anything. Putting a space in the "containing" field in the search box just lists all the table cells that have blocks of text but not the empty cells.
Additional complication: The person who put together the "templates" that the build team is using was using some other application (I suspect Microsoft Word) that left all sorts of cruft and crud scattered throughout the tags, so simply doing a search for "<td> </td>" in the source code will completely skip most (if not all) empty cells, because that search string will bypass all cells that have any additional attributes, or even just a random space in the code.
Yet Another Additional complication: The person who put this template together didn't know how to use <div> tags, so they used a bunch of empty <p> tags to create white-space at the bottom of the document. I've already been told that I'm not allowed to add <div> tags or remove the empty <p> tags, so just doing a source code search for " " will show me all the empty <p> tags with the <td> tags buried in the search results.
Does anyone know how to use the "Specific tag" part of the search tool to find the non-breaking space characters? Or is there a better way to do this that I'm unaware of?

