Help for this page

Select Code to Download


  1. or download this
    $str = 'Hulk hate classless system with means of manufacturing given t
    +o working class! Hulk crush puny Marxists!';
    if ( $str =~ /Hulk hate (\w+)/ ) {
        $str = '';
        my $word = $1;
    }
    
  2. or download this
    if ( $str =~ /Hulk hate \w+/ ) {
        # $-[0] == 0
        # $+[0] == 19
    ...
    =cut
    
    }