in reply to Multi-Line Regex's
You omitted the s modifier on the regex: it should end with mis rather than mi. That turns your single-line regex into a multi-line regex. I normally use that modifier on general principles.