9.2.3. Combining Option Modifiers
If you have more than one option modifier to use on the same pattern,
they may be used one after the other; their order isn't
significant:
if (/\bbarney\b.*\bfred\b/si) { # both /s and /i
print "That string mentions Fred after Barney!\n";
}