Help for this page

Select Code to Download


  1. or download this
    my ($TEXTIN,$HTMLOUT);
    my $input2 = $outputfile;
    my $output2 = "FTFIMS.html";
    ...
    my $rxRecStart = qr{STORE\d+};
    my $rxRecStop = qr{\n\s};
    my $recordStr = q{};
    
  2. or download this
    open $TEXTIN,"<",$input2 || die "Can not open $input2: $!\n";
  3. or download this
    open ($TEXTIN, "<", $input2) || die "Can not open $input2: $!\n";
  4. or download this
    open $TEXTIN, "<", $input2 or die "Can not open $input2: $!\n";
  5. or download this
    open my $TEXTIN, "<", $input2 or die "Can not open $input2: $!\n";
  6. or download this
    my $header = "";
    $header .= <$TEXTIN> for 0..1; # record the first two lines for later 
    +use
    while(<$TEXTIN>){
    ...
         }
    }
    # add code here for storing the last section