Hi,
If i have these strings:
banana not included. apple included.
banana, apple included.
the regex below returns a match on both strings but I don't want a match on the first string
banana.*(?<!(\bnot ))inc(\.|luded)?
What am I missing in my regex to achieve my desired result.
Thanks!