Help for this page

Select Code to Download


  1. or download this
    while (<FILEDATA>)
              {
              $match = <FILEDATA>;
              if ($match =~ /^TTITLE(\d+)=(.+)$/) { $title{$1} = $2; }
              }
    
  2. or download this
    while (<FILEDATA>)
              {
              $match = $_;
              if ($match =~ /^TTITLE(\d+)=(.+)$/) { $title{$1} = $2; }
              }