I would like to use (pure) regex to match strings that do not contain the word word.
However, I would not like to use lookaround, balancing groups, or that kind of stuff.
If it is impossible, then can we match strings that do not start with word instead?
Examples
- wordshould not match.
- worshould match.
- woreshould match.
 
     
    