I'm trying to GREP for multiple spaces, but some copyright notices that appear frequently contain multiple spaces that I am not allowed to remove, and throw up many, many false positives. However, the "legal" multiple spaces are always preceded by one of a few words "Secured", "Copyright" or "Reserved". Is there any way to match multiple spaces that are NOT preceded by these words. I tried things like this but I think I've got the wrong approach. Maybe this isn't possible, it 'feels' like there should be a way to do it, but I could wrong! (?<!Secured|Copyright) {2,}
... View more