Help for this page

Select Code to Download


  1. or download this
    $varalias =~ s/=.*//;  # Delete everything(.*) from the equals on
    $vartarget =~ s/"$//;  # Delete the quote at the end($)
    
  2. or download this
    # If able to delete the stuff(.*) between the beginning
    # of the line(^) and the word 'alias' and one-or-more spaces(\s+)
    # found after that ...
    ...
    
         # Then whatever...
    }
    
  3. or download this
    print OUT <<END_HTML;
    <FOO>
    <FOO>$varsource
    ...
    <FOO>
    <FOO>
    END_HTML
    
  4. or download this
    if ($something)
    {
          some_code();
    ...
                 some_other_code();
          }
    }