``` let regex = /(?i)tests?/ "testS".wholeMatch(of: regex) // this fails to match when it should "tesTs".wholeMatch(of: regex) // this properly matches ```