Crawler Regex Exclusion Examples - Google Drive
Exclude all drives that start with one or more user names:
Example: Starting with John.Doe
^Users\\John\.Doe@.*
Example: Starting with John.Doe or Jane.Doe
^Users\\(John|Jane)\.Doe@.*
Include ONLY drives that start with one or more user names
Example: Starting with John.Doe
^(?!Users\\John\.Doe@.*).*
Example: Starting with John.Doe or Jane.Doe
^(?!Users\\(John|Jane)\.Doe@.*).*