.*[Ss][Aa][Pp]\s?[Gg][Uu][Ii]\s?740
Which works fine. However now I've received a request to filter for quite a few long strings. If I make them case insensitive this way the regex is too long for the Postmaster filter box

I tried
.*(?i)string
.*(?i:string)
.*string/i
But that doesn't work. Anyone have a way to make the entire regex case insensitive?