Help for this page

Select Code to Download


  1. or download this
    $str =~ /Hulk hate (\w+)/k;
    
  2. or download this
    if ($str =~ /Hulk hate (\w+)/k) {
       $str='demons!';
       print $1; # could and probably would throw fatal error.
    }