Help for this page

Select Code to Download


  1. or download this
    my $file = "index.html";
    
    my @codes = ("<P>", "<BR>", "UL"); # and many more
    
  2. or download this
    open(FILE, "> $file") or die "Oops: $!";
    while(<FILE>);
    
  3. or download this
    if ($_ eq @words) {
    $_ =~ s/@words/lc @word/g;
    }
    
  4. or download this
    close(FILE);
    
  5. or download this
    #!/usr/bin/perl -i
    use warnings;
    ...
    $_ =~ s/$word/lc $word/g;
    }
    close(FILE);