Help for this page

Select Code to Download


  1. or download this
    foreach (@open) {
    $_ =~ s/\n//ig;
    
  2. or download this
    if ( "$_" eq "<(.*)>" ) {
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    
    ...
        print "TEXT: $text\n" if defined $1;
        print "HTML: $html\n" if $2;
    }