if ( $some_value =~ /some_thing_here/ ) { .... } #### if ( defined $some_value && $some_value =~ /some_thing_here/ ) { .... }