Negative Lookahead(?!barna) barnathe literal text barna (case sensitive) .any character (except for line terminators)
Negative Lookahead(?!erne) ernethe literal text erne (case sensitive) .any character (except for line terminators)
Negative Lookahead(?!ene) enethe literal text ene (case sensitive) .any character (except for line terminators)
enthe literal text en (case sensitive) .any character (except for line terminators)
.any character (except for line terminators)
the literal (3210 / 408 / 2016)
Non-Capturing Group(?:sin|vår) sinthe literal text sin (case sensitive) vårthe literal text vår (case sensitive) e?optionally matches the literal e (10110 / 1458 / 6516) (case sensitive)
Non-Capturing Group(?:$| (?!egen|egne)) 2nd Alternative (?!egen|egne) the literal (3210 / 408 / 2016)
Negative Lookahead(?!egen|egne) egenthe literal text egen (case sensitive) egnethe literal text egne (case sensitive) g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string