if ( $string !~ m/pattern/ ) { ..... } #### if ( not $string =~ m/pattern/ ) { ...... } #### unless ( $string =~ m/pattern/ ) { ...... }