Help for this page

Select Code to Download


  1. or download this
    
    #!/usr/bin/perl
    ...
    open(FileHTM,">newfile") || die("Cannot Open File");
    print FileHTM "$s\n";
    close(FileHTM)
    
  2. or download this
    my @replace = (
       [ qr/\/ka/   => '"ku"'  ],
       [ qr/\/hi/   => '"he he he"'  ],
    );