v the match any statements are like: match `hallo`, `hallobob`, `hallobier` Negative lookahead: `hallo(?!blaat)`: match any hallo but not in halloblaat Positive lookahead: `hallo(?=blaat)`: only match hallo in halloblaat --- Negative lookbehind: `(? Look behind has limited browser compatibility