$string =~ /bob/ || /alice/; # Good $string =~ /(?:bob|alice)/; # Bad