tecthe literal text tec (case insensitive) .any character (except for line terminators)
worldthe literal text world (case insensitive) Negated Character Class[^=]* *matches any number of characters outside the set below:
=the literal = (6110 / 758 / 3D16)
=the literal = (6110 / 758 / 3D16)
Negated Character Class[^H]* *matches any number of characters outside the set below:
Hthe literal H (7210 / 1108 / 4816) (case insensitive)
HOSTthe literal text HOST (case insensitive) \s*any whitespace character, repeated any number of times
=the literal = (6110 / 758 / 3D16)
\sany whitespace character
Negated Character Class[^\)]* *matches any number of characters outside the set below:
\)the literal ) (4110 / 518 / 2916)
\s*any whitespace character, repeated any number of times
\)the literal ) (4110 / 518 / 2916)
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string