Help for this page

Select Code to Download


  1. or download this
    if ( $some_value =~ /some_thing_here/ ) {
       ....
    }
    
  2. or download this
    if ( defined $some_value && $some_value =~ /some_thing_here/ ) {
       ....
    }