in reply to Regex matching a string beginning with "root: " but not containing another string
/^root: (?!\Qmyself@domain.of-my.own\E)/; [download]
/^root: /g and !/\G\Qmyself@domain.of-my.own\E/g; [download]