Hello,
I’m trying to use regex in the search field to find all strings containing the word “organization” but not when it occurs in between square brackets:
Example strings:
The organization “[organization name]” must contain at least one user per organization.
The ID [id] for [organization] must contain digits only
I try to use: (?:^|\s)(organization)(?!])
but it fails because of the negative lookahead (i guess)
It seems to work in other flavors
https://regex101.com/r/tG7kC0/1